This commit is contained in:
Enrico Candino
2025-07-18 11:50:57 +02:00
committed by GitHub
parent 748a439d7a
commit a0af20f20f
2 changed files with 21 additions and 6 deletions
+15 -1
View File
@@ -54,7 +54,14 @@ jobs:
- name: Run unit tests
run: make test-unit
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./cover.out
flags: unit
tests-e2e:
runs-on: ubuntu-latest
needs: validate
@@ -87,6 +94,13 @@ jobs:
- name: Run e2e tests
run: make test-e2e
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./cover.out
flags: e2e
- name: Archive k3s logs
uses: actions/upload-artifact@v4
if: always()