Skip to content

Commit

Permalink
ci(rust): fix working directory
Browse files Browse the repository at this point in the history
  • Loading branch information
ShadowySpirits committed Apr 21, 2023
1 parent 6456279 commit 4c2dafb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/rust_coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,13 @@ jobs:
args: cargo-llvm-cov

- name: Generate code coverage
working-directory: ./rust
run: cargo llvm-cov --all-features --workspace --ignore-filename-regex pb/ --codecov --output-path codecov.json

- name: Upload to codecov.io
uses: codecov/codecov-action@v3
with:
files: codecov.json
files: ./rust/codecov.json
flags: rust
verbose: true
fail_ci_if_error: true

0 comments on commit 4c2dafb

Please sign in to comment.