Skip to content

Commit

Permalink
Revert "kubeflow: disable codecov reporting GHA step (kubeflow#14)"
Browse files Browse the repository at this point in the history
This reverts commit 314e7ed.
tarilabs committed Feb 21, 2024

Verified

This commit was signed with the committer’s verified signature.
tarilabs Matteo Mortari
1 parent 8319226 commit f5e03db
Showing 2 changed files with 15 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -50,3 +50,10 @@ jobs:
fi
- name: Unit tests
run: make test-cover
- name: Upload coverage to Codecov
uses: codecov/[email protected]
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: coverage.txt
fail_ci_if_error: true
8 changes: 8 additions & 0 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
@@ -59,6 +59,14 @@ jobs:
else
nox --python=${{ matrix.python }}
fi
- name: Upload coverage report
uses: codecov/[email protected]
if: always() && matrix.session == 'tests'
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: coverage.xml
fail_ci_if_error: true
- name: Upload documentation
if: matrix.session == 'docs-build'
uses: actions/upload-artifact@v4

0 comments on commit f5e03db

Please sign in to comment.