Bump github.com/lestrrat-go/jwx/v2 from 2.0.13 to 2.0.14 (#30) #83
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: | |
- main | |
env: | |
GO_VERSION: '1.20' | |
LINT_VERSION: '1.51.1' | |
name: CI | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ env.GO_VERSION }}.x | |
- name: Run linters | |
uses: golangci/golangci-lint-action@v2 | |
with: | |
# Required: the version of golangci-lint is required and must be specified without patch version: they always use the latest patch version. | |
version: v${{ env.LINT_VERSION }} | |
# enable gofmt to check formatting issues | |
args: --enable gofmt | |
# show only new issues if it's a pull request. The default value is `false`. | |
only-new-issues: true | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ env.GO_VERSION }}.x | |
- name: Run tests | |
run: go test -count=1 ./... |