Skip to content

chore(deps): bump github.com/golang-jwt/jwt/v4 from 4.0.0 to 4.5.1 #492

chore(deps): bump github.com/golang-jwt/jwt/v4 from 4.0.0 to 4.5.1

chore(deps): bump github.com/golang-jwt/jwt/v4 from 4.0.0 to 4.5.1 #492

Workflow file for this run

name: Tests and Coverage
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
name: Check for linting issues
steps:
- uses: actions/checkout@v2
- name: Setup go
uses: actions/setup-go@v2
with:
go-version: 1.22.x
- name: Lint
run: |
go vet .
build:
needs: lint
runs-on: ubuntu-latest
strategy:
matrix:
go:
- 1.22.x
- 1.21.x
name: Test with Go v${{ matrix.go }}
steps:
- uses: actions/checkout@v2
- name: Setup go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Setup
run: |
go install github.com/mattn/goveralls@latest
- name: Test
run: |
go test -v -parallel=10 -covermode=count -coverprofile=coverage.out
- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
goveralls -coverprofile=coverage.out -service=github