We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
cargo-tarpaulin
test.yml
1 parent 1301174 commit ca05178Copy full SHA for ca05178
.github/workflows/test.yml
@@ -109,10 +109,12 @@ jobs:
109
profile: minimal
110
toolchain: nightly
111
override: true
112
+ - name: Download cargo-tarpaulin
113
+ run: |
114
+ mkdir -p "$HOME/.local/bin"
115
+ export PATH="$PATH:$HOME/.local/bin"
116
+ wget 'https://github.com/xd009642/tarpaulin/releases/download/0.32.8/cargo-tarpaulin-x86_64-unknown-linux-gnu.tar.gz' -O- | tar xz -C "$HOME/.local/bin"
117
- name: Measure code coverage
- uses: actions-rs/[email protected]
- with:
- version: '0.16.0'
- args: '-v --out Xml --ciserver github-actions'
118
+ run: cargo tarpaulin -v --out Xml --ciserver github-actions
119
- name: Upload coverage statistics
120
uses: codecov/codecov-action@v1
0 commit comments