Skip to content

Commit 694caa5

Browse files
committed
Fix CI
1 parent 553cec3 commit 694caa5

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,12 @@ jobs:
4040
run: go build -v ./...
4141

4242
- name: Test
43-
run: |
44-
go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
45-
echo "Coverage: $(go tool cover -func=coverage.out | grep total | awk '{print $3}')"
43+
run: go test -v -race -coverprofile=coverage.txt ./...
4644

4745
- name: Upload to Codecov
4846
uses: codecov/codecov-action@v5
4947
with:
50-
token: ${{ secrets.CODECOV_TOKEN }}
48+
token: ${{ secrets.CODECOV_TOKEN }}
49+
fail_ci_if_error: false
50+
verbose: true
51+
flags: unittests

0 commit comments

Comments
 (0)