We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc404d9 commit 8f7e9cfCopy full SHA for 8f7e9cf
.github/workflows/ci.yml
@@ -46,7 +46,13 @@ jobs:
46
- name: Create folder for test artifacts
47
run: mkdir -p test_artifacts
48
- name: test
49
- run: cd build && ctest --output-on-failure
+ run: cd build && ctest --output-on-failure --output-junit junit.xml
50
+ - name: Upload test results to Codecov
51
+ if: ${{ !cancelled() }}
52
+ uses: codecov/test-results-action@v1
53
+ with:
54
+ token: ${{ secrets.CODECOV_TOKEN }}
55
+ fail_ci_if_error: true
56
- name: run examples
57
run: ./run_examples.sh "192.168.56.101" 1
58
- name: install gcovr
0 commit comments