Merge pull request #768 from atlassian/htan/prepare-41.0.2 #894
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: ci | |
| on: | |
| pull_request: | |
| push: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Go | |
| uses: actions/setup-go@v3 | |
| with: | |
| # Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile | |
| go-version: 1.24.6 | |
| - name: Test | |
| run: | | |
| make check-fmt | |
| make build | |
| make check | |
| make test-race | |
| make bench-race |