try ci w/o cache
All checks were successful
CI/CD Pipeline / test (push) Successful in 1m27s

This commit is contained in:
philipp 2024-02-06 11:38:02 +01:00
parent 94a52b94dc
commit 4c5638e50c

View File

@ -9,17 +9,17 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up cargo cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-debug-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-debug-
# - name: Set up cargo cache
# uses: actions/cache@v3
# with:
# path: |
# ~/.cargo/bin/
# ~/.cargo/registry/index/
# ~/.cargo/registry/cache/
# ~/.cargo/git/db/
# target/
# key: ${{ runner.os }}-cargo-debug-${{ hashFiles('**/Cargo.lock') }}
# restore-keys: ${{ runner.os }}-cargo-debug-
- name: Tests
run: cargo test --verbose