Skip to content

Bump github.com/lestrrat-go/jwx/v2 from 2.0.19 to 2.0.21 #15

Bump github.com/lestrrat-go/jwx/v2 from 2.0.19 to 2.0.21

Bump github.com/lestrrat-go/jwx/v2 from 2.0.19 to 2.0.21 #15

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ^1.16
- name: Checkout
uses: actions/checkout@v2
- name: Get cache
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v -o client-tester .
- name: Test
run: go test -v .