Support P256 network curve in API calls #41
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
name: gofmt | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- ".github/workflows/gofmt.yml" | |
- ".github/workflows/gofmt.sh" | |
- "**.go" | |
jobs: | |
gofmt: | |
name: Run gofmt | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.20 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.20' | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- uses: actions/cache@v2 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-gofmt1.20-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-gofmt1.20- | |
- name: Install goimports | |
run: | | |
go get golang.org/x/tools/cmd/goimports | |
go build golang.org/x/tools/cmd/goimports | |
- name: gofmt | |
run: $GITHUB_WORKSPACE/.github/workflows/gofmt.sh |