Implement support for external secret providers #6817
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- "*" | |
name: Test | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go-version: [1.20.x] | |
runs-on: | |
- nscloud-ubuntu-22.04-amd64-8x16-with-cache | |
- nscloud-cache-size-10gb | |
- nscloud-cache-tag-foundation-golang | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go-version }} | |
cache: false | |
- name: Setup runner cache | |
uses: namespacelabs/nscloud-cache-action@v1 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
- name: Test | |
run: go test ./... | |
- name: Check Go Formatting | |
run: go fmt ./... && git diff --exit-code | |
- name: Check Go Mod Tidyness | |
run: go mod tidy && git diff --exit-code | |
- name: Breakpoint on failure | |
if: failure() && github.ref_name == 'main' | |
uses: namespacelabs/breakpoint-action@v0 | |
env: | |
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | |
with: | |
duration: 15m | |
authorized-users: edganiukov,hugosantos,n-g,htr,nichtverstehen,gmichelo | |
slack-announce-channel: "#ci" |