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 50ba8c0 commit 8a982d7Copy full SHA for 8a982d7
.github/workflows/go.yml
@@ -29,7 +29,7 @@ jobs:
29
# Needed for the example-test to run.
30
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31
run: |
32
- go test -cover -v ./...
+ go test -race -cover -v ./...
33
34
lint:
35
name: Lint
Makefile
@@ -7,7 +7,7 @@ lint:
7
internal/lint/golangci-lint run ./... --fix
8
9
check: lint
10
- go test -cover ./...
+ go test -race -cover ./...
11
go mod tidy
12
13
.PHONY: example
0 commit comments