diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-04-21 16:39:23 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-04-21 16:39:23 -0400 |
commit | f2cb2215213c0d831a697b0b440f78d9ad5c2b83 (patch) | |
tree | 70b6aca6198fb417ca8f676c42fe4bdd33a2d203 /.github | |
parent | 893f208557dc2d0c047355004d2f1d47d675f24a (diff) | |
download | bfs-f2cb2215213c0d831a697b0b440f78d9ad5c2b83.tar.xz |
Makefile: Put the main .o files under build/src
Diffstat (limited to '.github')
-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 7901b6d..9bb407a 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 build/*.o build/tests/*.o + gcov -abcfu build/*/*.o - uses: codecov/codecov-action@v2 with: |