Skip to content

Commit a44347d

Browse files
committed
fix: Add -race flag to GitHub actions test workflow.
Added `-race` to the `test` target in the Makefile, this way tests that are run in GitHub Actions will help reveal any potential race conditions.
1 parent 4d138f1 commit a44347d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ all:
1010

1111
.PHONY: test
1212
test:
13-
TZ= PGSSLMODE=disable go test ./... -v
13+
TZ= PGSSLMODE=disable go test ./... -v -race
1414

1515
tag:
1616
git tag $(VERSION)

0 commit comments

Comments
 (0)