github.com/lestrrat-go/jwx/v2@v2.0.21/.github/workflows/lint.yml (about) 1 name: lint 2 on: [push] 3 jobs: 4 golangci: 5 name: lint 6 runs-on: ubuntu-latest 7 steps: 8 - uses: actions/checkout@v4 9 - uses: actions/setup-go@v5 10 with: 11 go-version: 1.19 12 check-latest: true 13 - uses: golangci/golangci-lint-action@v4 14 with: 15 version: v1.54.2 16 - name: Run go vet 17 run: | 18 go vet ./...