Skip to content

Commit

Permalink
0.8.0 RC 3
Browse files Browse the repository at this point in the history
  • Loading branch information
flexatone committed Mar 16, 2024
1 parent a24b41b commit 048134a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,12 @@ jobs:
target/
key: coverage-${{ hashFiles('**/Cargo.lock') }}

- name: Install grcov
run: cargo install grcov
- name: Conditionally install grcov
run: |
if ! command -v grcov &> /dev/null
then
cargo install grcov
fi
- name: Build
env:
Expand Down

0 comments on commit 048134a

Please sign in to comment.