Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci-nightly-race.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
jobs:
race-detector:
runs-on: ubuntu-latest
timeout-minutes: 30
env:
CGO_ENABLED: "1" # Required by -race; explicit for documentation
steps:
- name: Checkout source
uses: actions/checkout@v6
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ unit-test-uds: check-go download-zmq ## Run unit tests without embedded tokenize
.PHONY: unit-test-race
unit-test-race: check-go download-zmq ## Run unit tests with Go race detector enabled
@printf "\033[33;1m==== Running unit tests with race detector ====\033[0m\n"
@go test -v -race ./pkg/...
@go test -v -race -count=1 ./pkg/...

.PHONY: unit-test-embedded
unit-test-embedded: check-go install-python-deps download-zmq ## Run unit tests with embedded tokenizers
Expand Down
Loading