fix: Key refresh should set no-cache to get most up to date keys #247
This file contains hidden or 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
| name: test | |
| on: | |
| push: | |
| branches: | |
| - v3 | |
| pull_request: | |
| branches: | |
| - v3 | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| go: ['1.25', '1.26'] | |
| name: Linux Go ${{ matrix.go }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Test | |
| run: go test -v ./... | |
| - name: Staticcheck | |
| run: go run honnef.co/go/tools/cmd/staticcheck@2025.1.1 ./... |