Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
enable race detector (#299)
Browse files Browse the repository at this point in the history
aerfio authored Nov 21, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent cc194d2 commit ea828a3
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macos-latest.yml
Original file line number Diff line number Diff line change
@@ -23,4 +23,4 @@ jobs:
run: go build cmd/arc/main.go

- name: Test
run: go test -v ./...
run: go test -v -race ./...
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-latest.yml
Original file line number Diff line number Diff line change
@@ -23,4 +23,4 @@ jobs:
run: go build cmd/arc/main.go

- name: Test
run: go test -v ./...
run: go test -v -race ./...
2 changes: 1 addition & 1 deletion .github/workflows/windows-latest.yml
Original file line number Diff line number Diff line change
@@ -23,4 +23,4 @@ jobs:
run: go build cmd/arc/main.go

- name: Test
run: go test -v ./...
run: go test -v -race ./...

0 comments on commit ea828a3

Please sign in to comment.