Skip to content

Commit

Permalink
build: upload coverage to codecov
Browse files Browse the repository at this point in the history
  • Loading branch information
caelansar committed Dec 15, 2023
1 parent 784ec52 commit dd2d6a7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,11 @@ jobs:
run: cargo check --all --all-features
- name: Lint rust sources
run: cargo clippy --all-features -- -D warnings
- name: Execute rust tests
run: cargo nextest run --features vm
- name: Collect coverage data
run: cargo llvm-cov nextest --features vm
run: cargo llvm-cov --locked --all-features --workspace --lcov --output-path lcov.info
- name: Upload to codecov.io
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true

0 comments on commit dd2d6a7

Please sign in to comment.