We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eda8064 commit 1714dd1Copy full SHA for 1714dd1
1 file changed
.github/workflows/test_e2e.yml
@@ -198,6 +198,20 @@ jobs:
198
source dev/files/env.sh
199
go test ./tests/e2e -tags e2e,robot -v -timeout 60m
200
201
+ - name: Fetch coverage data
202
+ run: |
203
+ source dev/files/env.sh
204
+ bash scripts/get-coverage-from-k8s.sh
205
+
206
+ - name: Upload coverage reports to Codecov
207
+ uses: codecov/codecov-action@v5
208
+ if: >
209
+ !startsWith(github.head_ref, 'renovate/') &&
210
+ !startsWith(github.head_ref, 'releaser-pleaser--')
211
+ with:
212
+ token: ${{ secrets.CODECOV_TOKEN }}
213
+ files: ./coverage/coverage.txt
214
215
- name: Dump logs & events
216
if: always()
217
continue-on-error: true
0 commit comments