Skip to content

Commit d7eb556

Browse files
committed
fix: set codecov token
Signed-off-by: Matej Vašek <[email protected]>
1 parent e370b97 commit d7eb556

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ jobs:
4242
with:
4343
files: ./coverage.txt
4444
flags: unit-tests-${{ matrix.os }}
45+
fail_ci_if_error: true
46+
verbose: true
47+
token: ${{ secrets.CODECOV_TOKEN }}
4548

4649
test-integration:
4750
runs-on: "ubuntu-latest"
@@ -66,6 +69,9 @@ jobs:
6669
with:
6770
files: ./coverage.txt
6871
flags: integration-tests
72+
fail_ci_if_error: true
73+
verbose: true
74+
token: ${{ secrets.CODECOV_TOKEN }}
6975

7076
e2e-test:
7177
strategy:
@@ -91,6 +97,9 @@ jobs:
9197
with:
9298
files: ./coverage.txt
9399
flags: e2e-test
100+
fail_ci_if_error: true
101+
verbose: true
102+
token: ${{ secrets.CODECOV_TOKEN }}
94103

95104
e2e-on-cluster-test:
96105
strategy:
@@ -123,6 +132,9 @@ jobs:
123132
with:
124133
files: ./coverage.txt
125134
flags: e2e-test-oncluster
135+
fail_ci_if_error: true
136+
verbose: true
137+
token: ${{ secrets.CODECOV_TOKEN }}
126138

127139
build:
128140
needs: [check, test-unit, test-integration, e2e-test, e2e-on-cluster-test]

0 commit comments

Comments
 (0)