fix!: base64url-encoded nonce #125
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Go Linters - GitHub Actions | |
name: linters | |
on: [push] | |
jobs: | |
# Check linters on latest-ubuntu with default version of Go. | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
env: | |
GO111MODULE: on | |
steps: | |
- name: Setup go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.19" | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install golangci-lint | |
run: | | |
go version | |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.48.0 | |
- name: Run required linters in .golangci.yml plus hard-coded ones here | |
run: make -w GOLINT=$(go env GOPATH)/bin/golangci-lint lint | |
- name: Run optional linters (not required to pass) | |
run: make GOLINT=$(go env GOPATH)/bin/golangci-lint lint-extra |