Skip to content

Bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 #141

Bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1

Bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 #141

Workflow file for this run

name: build
on:
push
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.22
uses: actions/setup-go@v5
with:
go-version: "1.22"
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Lint
uses: golangci/golangci-lint-action@v6
with:
args: -p bugs -p unused -D protogetter
- name: Build
run: make test
- name: Publish Codecoverage report
run: bash <(curl -s https://codecov.io/bash)