chore(deps): update dependency node to v24 #5
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: Race Detection | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches-ignore: | |
| - '**-wip' | |
| pull_request: | |
| jobs: | |
| race: | |
| runs-on: ubuntu-latest | |
| # Pull requests from the same repository won't trigger this checks as they were already triggered by the push | |
| if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository) | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.26' | |
| cache: true | |
| cache-dependency-path: '**/go.sum' | |
| - name: Run tests with race detection | |
| run: make race GOTEST_FLAGS="-v" |