We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56b7dae commit 0427174Copy full SHA for 0427174
.github/workflows/checks.yml
@@ -22,7 +22,7 @@ jobs:
22
run: go vet ./...
23
24
- name: Test
25
- run: go test -coverprofile=coverage.out ./...
+ run: go test -race -coverprofile=coverage.out ./...
26
27
- name: Upload test coverage report
28
uses: codecov/[email protected]
Makefile
@@ -27,12 +27,12 @@ run: build
./bin/main javascript
29
test:
30
- go test ./...
+ go test -race ./...
31
32
test-verbose:
33
- go test -v ./...
+ go test -race -v ./...
34
35
test-coverage:
36
- go test -coverprofile=coverage.out ./...
+ go test -race -coverprofile=coverage.out ./...
37
go tool cover -html=coverage.out -o coverage.html
38
open coverage.html
0 commit comments