Remove cache everywhere

This commit is contained in:
curquiza 2023-01-25 16:34:56 +01:00
parent ff6b8dfac4
commit 9c3830a19c

View File

@ -31,8 +31,8 @@ jobs:
with: with:
toolchain: stable toolchain: stable
override: true override: true
- name: Cache dependencies # - name: Cache dependencies
uses: Swatinem/rust-cache@v2.2.0 # uses: Swatinem/rust-cache@v2.2.0
- name: Run cargo check without any default features - name: Run cargo check without any default features
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:
@ -83,8 +83,8 @@ jobs:
with: with:
toolchain: stable toolchain: stable
override: true override: true
- name: Cache dependencies # - name: Cache dependencies
uses: Swatinem/rust-cache@v2.2.0 # uses: Swatinem/rust-cache@v2.2.0
- name: Run tests in debug - name: Run tests in debug
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:
@ -102,8 +102,8 @@ jobs:
toolchain: stable toolchain: stable
override: true override: true
components: clippy components: clippy
- name: Cache dependencies # - name: Cache dependencies
uses: Swatinem/rust-cache@v2.2.0 # uses: Swatinem/rust-cache@v2.2.0
- name: Run cargo clippy - name: Run cargo clippy
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:
@ -121,8 +121,8 @@ jobs:
toolchain: nightly toolchain: nightly
override: true override: true
components: rustfmt components: rustfmt
- name: Cache dependencies # - name: Cache dependencies
uses: Swatinem/rust-cache@v2.2.0 # uses: Swatinem/rust-cache@v2.2.0
- name: Run cargo fmt - name: Run cargo fmt
# Since we never ran the `build.rs` script in the benchmark directory we are missing one auto-generated import file. # Since we never ran the `build.rs` script in the benchmark directory we are missing one auto-generated import file.
# Since we want to trigger (and fail) this action as fast as possible, instead of building the benchmark crate # Since we want to trigger (and fail) this action as fast as possible, instead of building the benchmark crate