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 c586f10 commit e354d0dCopy full SHA for e354d0d
.github/workflows/ci.yml
@@ -38,9 +38,20 @@ jobs:
38
toolchain: stable
39
targets: wasm32-wasip2
40
41
- - name: Cache
+ - name: Rust Cache
42
uses: Swatinem/rust-cache@f13886b937689c021905a6b90929199931d60db1 # v2.8.1
43
44
+ # Swatinem/rust-cache does NOT cache docs, see
45
+ # https://github.com/Swatinem/rust-cache/issues/208
46
+ - name: Rustdoc Cache
47
+ uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
48
+ with:
49
+ path: target/doc
50
+ key: v0-${{ runner.os }}-rustdoc-${{ hashFiles('**/Cargo.lock') }}
51
+ restore-keys: |
52
+ v0-${{ runner.os }}-rustdoc-${{ hashFiles('**/Cargo.lock') }}
53
+ v0-${{ runner.os }}-rustdoc-
54
+
55
- name: just check
56
run: just check
57
env:
0 commit comments