Skip to content

Commit

Permalink
ci fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
slyon committed Aug 9, 2023
1 parent deef634 commit 91e71f4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/check-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ jobs:
# Runs the unit tests with coverage
- name: Run unit tests
run: |
meson setup _build --prefix=/usr -Db_coverage=true -Dunit_testing=true
meson compile -C _build
unbuffer meson test -C _build --verbose
meson setup _build-cov --prefix=/usr -Db_coverage=true -Dunit_testing=true
meson compile -C _build-cov
unbuffer meson test -C _build-cov --verbose
cat _build-cov/meson-logs/coverage.txt
# Checks the coverage diff to the main branch
#- name: Upload coverage to Codecov
Expand Down

0 comments on commit 91e71f4

Please sign in to comment.