Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork10
chore: update linter#2
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
| name:Tests | |
| on: | |
| push: | |
| branches: | |
| -main | |
| -master | |
| pull_request: | |
| permissions: | |
| contents:read | |
| env: | |
| CGO_ENABLED:0 | |
| jobs: | |
| cross: | |
| name:Go | |
| strategy: | |
| matrix: | |
| go-version:[ oldstable, stable ] | |
| os:[ubuntu-latest, macos-latest, windows-latest] | |
| runs-on:${{ matrix.os }} | |
| steps: | |
| -uses:actions/checkout@v4 | |
| -uses:actions/setup-go@v5 | |
| with: | |
| go-version:${{ matrix.go-version }} | |
| -name:Test | |
| run:make test | |
| -name:Build | |
| run:make build | |
| -name:Vet integration | |
| run:make vet |