Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: AmadeusITGroup/amc
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 642d39432ff2ce469523e232ab9ccd1a0558fd1e
Choose a base ref
..
head repository: AmadeusITGroup/amc
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ef4e7879d40ff45354ed785499f4d44be44ecf28
Choose a head ref
Showing with 17 additions and 0 deletions.
  1. +17 −0 .github/workflows/ubuntu.yml
17 changes: 17 additions & 0 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
@@ -39,3 +39,20 @@ jobs:
run: cmake --build build
- name: test
run: cd build && ctest --output-on-failure

ci_test_coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: cmake
run: cmake -S . -B build
- name: build
run: cmake --build build --target ci_test_coverage
- name: archive coverage report
uses: actions/upload-artifact@v2
with:
name: code-coverage-report
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}