Skip to content

Bump github.com/lestrrat-go/jwx from 1.2.25 to 1.2.26 #112

Bump github.com/lestrrat-go/jwx from 1.2.25 to 1.2.26

Bump github.com/lestrrat-go/jwx from 1.2.25 to 1.2.26 #112

Workflow file for this run

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