Skip to content

Commit

Permalink
Remove race detector, per review suggestion.
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyandrewmeyer committed Aug 28, 2024
1 parent eb5405e commit 3821d68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tiobe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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
Expand Down

0 comments on commit 3821d68

Please sign in to comment.