Skip to content

Commit

Permalink
test: change destination dir
Browse files Browse the repository at this point in the history
  • Loading branch information
romanzac committed Sep 17, 2024
1 parent 38c3985 commit d03c63b
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/my_codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,21 +57,17 @@ jobs:
with:
name: test-data-${{ matrix.feature }}
path: ./target/debug
- name: Cleanup target dir
uses: actions-rs/cargo@v1
with:
command: clean
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: ./target/debug
path: /tmp/target/debug
pattern: test-data-*
merge-multiple: true
- name: Run Grcov
run: |
cargo install grcov;
mkdir /tmp/cov;
grcov . --binary-path ./target/debug -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o /tmp/cov/tests.lcov;
grcov . --binary-path /tmp/target/debug -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o /tmp/cov/tests.lcov;
- uses: actions/upload-artifact@v3
if: failure()
with:
Expand Down

0 comments on commit d03c63b

Please sign in to comment.