ci: go test remove -v

This commit is contained in:
visualfc
2025-02-05 09:05:05 +08:00
parent 83dd77f4c4
commit 3a0d1466cc
3 changed files with 2 additions and 19 deletions

View File

@@ -44,11 +44,11 @@ jobs:
- name: Test
if: ${{!startsWith(matrix.os, 'macos')}}
run: go test -v ./...
run: go test ./...
- name: Test with coverage
if: startsWith(matrix.os, 'macos')
run: go test -v -coverprofile="coverage.txt" -covermode=atomic ./...
run: go test -coverprofile="coverage.txt" -covermode=atomic ./...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5