diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-04-18 22:33:11 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-04-18 22:33:11 -0400 |
commit | 3c08da971785404eabb4bdc3eee6672e2e498ca7 (patch) | |
tree | 786463a4f09486fe223a7b09db269ae482a77c51 /.github/workflows | |
parent | 0c410396f4de2ec03eb5841f0758bd8cedd0a709 (diff) | |
download | bfs-3c08da971785404eabb4bdc3eee6672e2e498ca7.tar.xz |
ci/codecov: Look for gcov files under build
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/codecov.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 742a3c1..7901b6d 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -25,7 +25,7 @@ jobs: - name: Generate coverage run: | make -j$(nproc) gcov check - gcov -abcfu src/*.c tests/*.c + gcov -abcfu build/*.o build/tests/*.o - uses: codecov/codecov-action@v2 with: |