Update OpenAPI for 4043d4507285595213f5a5cef4417190865f94ef #2559
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
on: [push, pull_request] | |
name: CI | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.19 | |
- name: test | |
run: | | |
go install golang.org/x/lint/golint@latest && | |
go install github.com/go-bindata/go-bindata/...@latest && | |
go install honnef.co/go/tools/cmd/staticcheck@latest && | |
go generate && | |
make |