Skip to content

Commit d675c07

Browse files
committed
Enable caching in CI
1 parent bc11288 commit d675c07

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
sudo apt install -y ${{ matrix.libfuse }} build-essential
3636
3737
- name: Install Rust
38-
#if: steps.rust-cache.outputs.cache-hit != 'true'
38+
if: steps.rust-cache.outputs.cache-hit != 'true'
3939
run: |
4040
rustup target add x86_64-unknown-linux-musl
4141
@@ -69,14 +69,14 @@ jobs:
6969
sudo apt install -y libfuse-dev libfuse3-dev build-essential
7070
7171
- name: Install Rust
72-
#if: steps.rust-cache.outputs.cache-hit != 'true'
72+
if: steps.rust-cache.outputs.cache-hit != 'true'
7373
run: |
7474
rustup toolchain install 1.81
7575
rustup component add rustfmt
7676
rustup component add clippy
7777
7878
- name: Install cargo-deny
79-
#if: steps.rust-cache.outputs.cache-hit != 'true'
79+
if: steps.rust-cache.outputs.cache-hit != 'true'
8080
run: cargo +1.81 install --force --version 0.16.2 cargo-deny --locked
8181

8282
- name: Run tests

0 commit comments

Comments
 (0)