diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f30413f6..30b467ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -109,6 +109,9 @@ jobs: - name: Download dependencies run: go mod download + - name: Compile test packages only + run: go test ./... -run='^$' + - name: Run tests with race detection run: go test -p 1 -race -v ./...