chore(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 #635
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
name: Continuous Integration | |
on: pull_request | |
jobs: | |
module: | |
name: Module build | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
go: ['1.21', '1.22', '1.23'] | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Go ${{ matrix.go }} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Install golint | |
run: go install golang.org/x/lint/golint@latest | |
- name: Run Linter | |
run: | | |
golint -set_exit_status ./... | |
- name: Run Unit Tests | |
if: success() || failure() | |
run: go test -v -race -test.short ./... | |
- name: Run Formatter | |
run: | | |
if [[ ! -z "$(gofmt -l -s .)" ]]; then | |
echo "Go code is not formatted:" | |
gofmt -d -s . | |
exit 1 | |
fi | |
- name: Run Static Analyzer | |
run: go vet -v ./... |