Skip to content

Commit b0bcb00

Browse files
committed
GitHub Actions Updates
Signed-off-by: Ben Hale <[email protected]>
1 parent b11de1a commit b0bcb00

File tree

1 file changed

+5
-18
lines changed

1 file changed

+5
-18
lines changed

.github/workflows/tests.yaml

+5-18
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,10 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- 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
3118
- name: Report coverage
3219
run: bash <(curl -s https://codecov.io/bash)

0 commit comments

Comments
 (0)