We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b971c6e commit 845a634Copy full SHA for 845a634
.github/workflows/ci.yml
@@ -29,9 +29,18 @@ jobs:
29
override: true
30
components: rustfmt, clippy
31
- name: Cache dependencies
32
- uses: Swatinem/rust-cache@v2
+ uses: actions/cache@v4
33
with:
34
- key: ci-${{ matrix.os }}
+ path: |
35
+ ~/.cargo/bin
36
+ ~/.cargo/.crates.toml
37
+ ~/.cargo/.crates2.json
38
+ ~/.cargo/registry
39
+ ~/.cargo/git
40
+ target
41
+ key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
42
+ restore-keys: |
43
+ ${{ runner.os }}-cargo-
44
- name: Lint
45
run: cargo clippy --all-targets
46
- name: Prepare driver and browsers
0 commit comments