File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -53,22 +53,22 @@ jobs:
53
53
54
54
# Separate upload task for unit test coverage allows for flagged analysis of test coverage
55
55
- name : Upload Unit Test Coverage
56
- if : matrix.os-version == 'ubuntu-latest'
56
+ if : startsWith( matrix.os-version, 'ubuntu')
57
57
uses : codecov/codecov-action@v3
58
58
with :
59
59
directory : ./.reports/
60
- fail_ci_if_error : true
60
+ fail_ci_if_error : false
61
61
file : unit.xml
62
62
flags : unit
63
63
verbose : true
64
64
65
65
# Separate upload task for integration test coverage allows for flagged analysis of test coverage
66
66
- name : Upload Integration Test Coverage
67
- if : matrix.os-version == 'ubuntu-latest'
67
+ if : startsWith( matrix.os-version, 'ubuntu')
68
68
uses : codecov/codecov-action@v3
69
69
with :
70
70
directory : ./.reports/
71
- fail_ci_if_error : true
71
+ fail_ci_if_error : false
72
72
file : integration.xml
73
73
flags : integration
74
74
verbose : true
You can’t perform that action at this time.
0 commit comments