-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove race detector, per review suggestion.
- Loading branch information
1 parent
eb5405e
commit 3821d68
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ jobs: | |
|
||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
|
||
- name: Install dependencies | ||
run: | | ||
go install honnef.co/go/tools/cmd/[email protected] | ||
|
@@ -23,7 +23,7 @@ jobs: | |
# We could store a report from the regular run, but this is cheap to do and keeps this isolated. | ||
- name: Test and generate coverage report | ||
run: | | ||
go test -race -coverprofile=coverage.out ./... | ||
go test -coverprofile=coverage.out ./... | ||
gocov convert coverage.out > coverage.json | ||
# Annoyingly, the coverage.xml file needs to be in a .coverage folder. | ||
mkdir .coverage | ||
|