Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,12 +215,23 @@ jobs:
if: always() && github.actor != 'dependabot[bot]'
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml,./junit.xml
files: ./coverage.xml
flags: unittests
name: codecov-devrelay
fail_ci_if_error: true
verbose: true

- name: Upload test results to Codecov
uses: codecov/test-results-action@v1
Comment thread
bcdonadio marked this conversation as resolved.
if: always() && github.actor != 'dependabot[bot]'
Comment thread
bcdonadio marked this conversation as resolved.
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./junit.xml
flags: unittests
name: test-results-devrelay
fail_ci_if_error: true
verbose: true

- name: Publish test results
uses: dorny/test-reporter@d61b558e8df85cb60d09ca3e5b09653b4477cea7 # v1
if: always() && github.actor != 'dependabot[bot]'
Expand Down
Loading