Skip to content
Merged
Changes from 2 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
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,12 @@ jobs:
- name: Create folder for test artifacts
run: mkdir -p test_artifacts
- name: test
run: cd build && ctest --output-on-failure
run: cd build && ctest --output-on-failure --output-junit junit.xml
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: run examples
run: ./run_examples.sh "192.168.56.101" 1
- name: install gcovr
Expand Down
Loading