Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

Ignore codecov upload failures #144

Merged
merged 2 commits into from
Nov 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
with:
file: coverage.txt
flags: unittests
fail_ci_if_error: true
fail_ci_if_error: false
- uses: actions/setup-go@v2
with:
go-version: '1.18'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
- name: Unit Tests
run: make mod_download && make test_unit_codecov
- name: Push CodeCov
uses: codecov/codecov-action@v1.5.2
uses: codecov/codecov-action@v3.1.1
with:
file: coverage.txt
flags: unittests
fail_ci_if_error: true
fail_ci_if_error: false
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this ok?

- name: Bench tests
run: make install && make test_benchmark
lint:
Expand Down