Skip to content

Commit

Permalink
[TESTS] Proof of concept of codecov-test-results action in GHA (- WIP #…
Browse files Browse the repository at this point in the history
…13 -)

Changes in file .github/workflows/Tests.yml:
 added codecov/test-results-action@v1
  • Loading branch information
reactive-firewall committed Aug 28, 2024
1 parent 418895b commit 10e1f3a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,17 @@ jobs:
if: ${{ runner.os }} != "Linux"
run: |
if [ $OS == macos-latest ] ; then ./cc-test-reporter after-build --exit-code 0 || true ; else echo "SKIP code climate" ; fi ;
- name: Upload Python ${{ matrix.python-version }} integration test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./test-reports/junit.xml
directory: .
flags: ${{ matrix.os }},${{ matrix.python-version }}
name: multicast-github-${{ matrix.os }}-${{ matrix.python-version }}-test-results
verbose: true
fail_ci_if_error: false
- name: Post-purge
id: post-uninstall
run: make -j1 -f Makefile purge || true ;
Expand Down

0 comments on commit 10e1f3a

Please sign in to comment.