Skip to content

Commit 8a982d7

Browse files
race
1 parent 50ba8c0 commit 8a982d7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
# Needed for the example-test to run.
3030
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3131
run: |
32-
go test -cover -v ./...
32+
go test -race -cover -v ./...
3333
3434
lint:
3535
name: Lint

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ lint:
77
internal/lint/golangci-lint run ./... --fix
88

99
check: lint
10-
go test -cover ./...
10+
go test -race -cover ./...
1111
go mod tidy
1212

1313
.PHONY: example

0 commit comments

Comments
 (0)