Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

Commit

Permalink
Use cargo tarpaulin directly rather than via action
Browse files Browse the repository at this point in the history
  • Loading branch information
boustrophedon committed Feb 28, 2022
1 parent 0112fec commit 9d91fb2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run cargo tarpaulin
uses: actions-rs/tarpaulin@v0.1
with:
args: '--follow-exec --tests --examples --out Lcov --output-dir ./coverage'
- name: Install cargo tarpaulin
run: cargo install cargo-tarpaulin
- name: Run tarpaulin
run: cargo tarpaulin --follow-exec --tests --examples --out Lcov --output-dir ./coverage
- name: Check file was actually created
run: cat /tmp/whatever
- name: Upload coverage to coveralls
Expand Down

0 comments on commit 9d91fb2

Please sign in to comment.