Add NewKeySet method to JWTAuth and demonstrate JWKS rotation #112
Workflow file for this run
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
| on: | |
| push: | |
| branches: '**' | |
| paths-ignore: | |
| - 'docs/**' | |
| pull_request: | |
| branches: '**' | |
| paths-ignore: | |
| - 'docs/**' | |
| name: Test | |
| jobs: | |
| test: | |
| env: | |
| GOPATH: ${{ github.workspace }} | |
| defaults: | |
| run: | |
| working-directory: ${{ env.GOPATH }}/src/github.com/${{ github.repository }} | |
| strategy: | |
| matrix: | |
| go-version: [1.22.x, 1.23.x, 1.24.x] | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Install Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| with: | |
| path: ${{ env.GOPATH }}/src/github.com/${{ github.repository }} | |
| - name: Test | |
| run: | | |
| go get -d -t ./... | |
| go test -v ./... |