Skip to content

Commit 8c30289

Browse files
committed
CodeCov: turn off fail CI if error & adjust to ubuntu version change
1 parent b0251dc commit 8c30289

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build-test-deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,22 +53,22 @@ jobs:
5353
5454
# Separate upload task for unit test coverage allows for flagged analysis of test coverage
5555
- name: Upload Unit Test Coverage
56-
if: matrix.os-version == 'ubuntu-latest'
56+
if: startsWith(matrix.os-version, 'ubuntu')
5757
uses: codecov/codecov-action@v3
5858
with:
5959
directory: ./.reports/
60-
fail_ci_if_error: true
60+
fail_ci_if_error: false
6161
file: unit.xml
6262
flags: unit
6363
verbose: true
6464

6565
# Separate upload task for integration test coverage allows for flagged analysis of test coverage
6666
- name: Upload Integration Test Coverage
67-
if: matrix.os-version == 'ubuntu-latest'
67+
if: startsWith(matrix.os-version, 'ubuntu')
6868
uses: codecov/codecov-action@v3
6969
with:
7070
directory: ./.reports/
71-
fail_ci_if_error: true
71+
fail_ci_if_error: false
7272
file: integration.xml
7373
flags: integration
7474
verbose: true

0 commit comments

Comments
 (0)