Skip to content

Bump github.com/lestrrat-go/jwx/v2 from 2.0.21 to 2.1.0 #1092

Bump github.com/lestrrat-go/jwx/v2 from 2.0.21 to 2.1.0

Bump github.com/lestrrat-go/jwx/v2 from 2.0.21 to 2.1.0 #1092

Workflow file for this run

name: Main Workflow
on:
push:
branches: [main]
pull_request:
jobs:
checks:
name: Checks
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: Check that files were correctly generated
run: make check-getters
- name: Check that the packages can be built
run: go build ./...
- name: Check for linting errors
uses: golangci/golangci-lint-action@a4f60bb28d35aeee14e6880718e0c85ff1882e64 # [email protected]
with:
version: latest
args: -v -c .golangci.yml
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: Run tests
run: make test
- name: Update codecov report
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # [email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.out
fail_ci_if_error: false
verbose: true