Skip to content

Commit 9e0bc0f

Browse files
committed
ci: Remove use of old gh actions cache
It's deprecated. This repo is not busy enough to worry about a new cache for now.
1 parent 117e026 commit 9e0bc0f

File tree

1 file changed

+9
-19
lines changed

1 file changed

+9
-19
lines changed

.github/workflows/tests.yml

Lines changed: 9 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,12 @@ jobs:
2323
runs-on: ${{ matrix.os }}
2424

2525
steps:
26-
- uses: actions/checkout@v2
27-
- name: Show Cargo and rustc version
28-
run: |
29-
cargo --version
30-
rustc --version
31-
- name: Cache Cargo
32-
uses: actions/cache@v2
33-
with:
34-
path: |
35-
~/.cargo/registry
36-
~/.cargo/git
37-
target
38-
key: cargo-${{ runner.os }}-${{ hashFiles('Cargo.lock') }}
39-
restore-keys: |
40-
cargo-${{ runner.os }}-
41-
- name: Build
42-
run: cargo build --all-targets
43-
- name: Test
44-
run: cargo test --workspace
26+
- uses: actions/checkout@v2
27+
- name: Show Cargo and rustc version
28+
run: |
29+
cargo --version
30+
rustc --version
31+
- name: Build
32+
run: cargo build --all-targets
33+
- name: Test
34+
run: cargo test --workspace

0 commit comments

Comments
 (0)