Skip to content

chore(deps): update actions/checkout action to v7 #19

chore(deps): update actions/checkout action to v7

chore(deps): update actions/checkout action to v7 #19

Workflow file for this run

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@v7
- 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"