File tree 1 file changed +5
-18
lines changed
1 file changed +5
-18
lines changed Original file line number Diff line number Diff line change @@ -10,23 +10,10 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- uses : actions/checkout@v4
13
- - uses : actions/cache@v3
14
- with :
15
- path : |
16
- ~/.cargo/registry/index/
17
- ~/.cargo/registry/cache/
18
- ~/.cargo/git/db/
19
- target/
20
- key : ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
21
- -
uses :
actions-rs/[email protected]
22
- with :
23
- crate : cargo-tarpaulin
24
- version : latest
25
- - uses : actions-rs/toolchain@v1
26
- with :
27
- toolchain : stable
28
- - uses : actions-rs/cargo@v1
29
- with :
30
- command : tarpaulin
13
+ - uses : dtolnay/rust-toolchain@stable
14
+ - name : Install tarpaulin
15
+ run : cargo install cargo-tarpaulin
16
+ - name : Run tarpaulin
17
+ run : cargo tarpaulin
31
18
- name : Report coverage
32
19
run : bash <(curl -s https://codecov.io/bash)
You can’t perform that action at this time.
0 commit comments