Skip to content

Commit

Permalink
fix(ci): build before running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Sep 10, 2024
1 parent 86688c0 commit 8478f2f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ jobs:
uses: Swatinem/rust-cache@v2

- name: Generate code coverage
run: cargo llvm-cov --lcov --output-path lcov.info
run: |
cargo build
cargo llvm-cov --lcov --output-path lcov.info
env:
OUT_DIR: target

Expand Down

0 comments on commit 8478f2f

Please sign in to comment.