Remove cache

This commit is contained in:
Gregory Schier
2024-06-08 20:47:18 -07:00
parent d507f8c99f
commit 37d0b487b8

View File

@@ -28,23 +28,7 @@ jobs:
profile: minimal
toolchain: nightly # required for `cargo udeps`
override: true
- name: Set up cargo cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Lint
run: cargo check
- run: cargo install --locked cargo-udeps || true
- name: Check
run: |
cargo udeps
rm -rf ~/.cargo/advisory-db
- name: Test
run: cargo test --all