Skip to content

fix: Include JWKS in B2B constructor too #428

fix: Include JWKS in B2B constructor too

fix: Include JWKS in B2B constructor too #428

Workflow file for this run

name: Build
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.18
cache: true
- uses: golangci/[email protected]
with:
version: v1.49
args: --timeout 5m
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go:
# Start at the `go` directive version in go.mod.
- '1.18'
- '1.19'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
cache: true
- run: go test ./...