Skip to content

Commit 2dc4c6a

Browse files
committedJun 19, 2023
Fix CI tests not being run on subpackages
This is why data race in queue_test.go hasn't been detected on CI.
1 parent d077fb6 commit 2dc4c6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
OUT="$(gofmt -l -d ./)"; test -z "$OUT" || (echo "$OUT" && return 1)
3737
golint -set_exit_status
3838
go vet -v ./...
39-
go test -race -v -coverprofile=coverage.txt -covermode=atomic ./
39+
go test -race -v -coverprofile=coverage.txt -covermode=atomic ./...
4040
4141
build:
4242
name: Build ${{matrix.go}}

0 commit comments

Comments
 (0)