diff options
author | Santo Cariotti <santo@dcariotti.me> | 2025-03-29 17:36:28 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2025-03-29 17:36:28 +0100 |
commit | 2e92ccd66eb5c31b8fbbcd205d7b4a882450e9d0 (patch) | |
tree | dcd0853ff6b861183297979478aad6e9b0e53576 /.github | |
parent | d8295b3f23bd9af7b8947bccb990601aa1739a0b (diff) |
ci: remove `-race`
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7ad7a7b..ba8525c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: go-version: '1.23' - name: Test - run: go test $(go list ./... | egrep -v 'proto|cmd') -v -race -coverprofile=coverage.txt + run: go test $(go list ./... | egrep -v 'proto|cmd') -v -coverprofile=coverage.txt - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v5 |