Update OpenAPI for af5309cae53e5f666f9686dfed306d6d3b5fdc67 #5625
This file contains hidden or 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 | |
| permissions: {} | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| submodules: recursive | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: stable | |
| - 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 |