Skip to content

Bump github.com/lestrrat-go/jwx from 1.2.4 to 1.2.26 (#15) #60

Bump github.com/lestrrat-go/jwx from 1.2.4 to 1.2.26 (#15)

Bump github.com/lestrrat-go/jwx from 1.2.4 to 1.2.26 (#15) #60

Workflow file for this run

name: Go CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Golang - test
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.19", "1.20"]
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: go mod tidy
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...