Merge pull request #1174 from vincentbernat/fix/maxvers #922
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
| # Inspired by github.com/IBM/sarama/pull/2874 (MIT) | |
| name: i386 | |
| on: | |
| push: | |
| branches: ["*"] | |
| paths-ignore: | |
| - '**/*.md' | |
| pull_request: | |
| branches: ["*"] | |
| paths-ignore: | |
| - '**/*.md' | |
| jobs: | |
| atomicalign: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: 'stable' | |
| - name: staticcheck | |
| env: | |
| GOARCH: 386 | |
| GOFLAGS: -tags=functional | |
| run: | | |
| git clone --depth=1 https://github.com/dominikh/go-tools /tmp/go-tools | |
| ( cd /tmp/go-tools/cmd/staticcheck && go build -o /tmp/staticcheck ) | |
| /tmp/staticcheck -checks SA1027 ./... |