Spaces:
Runtime error
Runtime error
neon_arch
commited on
Commit
•
ed82943
1
Parent(s):
c2262cc
fix: fix rust.yml caching
Browse files- .github/workflows/rust.yml +13 -7
.github/workflows/rust.yml
CHANGED
@@ -20,14 +20,20 @@ jobs:
|
|
20 |
- stable
|
21 |
|
22 |
steps:
|
23 |
-
-
|
24 |
-
|
|
|
25 |
with:
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
|
|
|
|
|
|
|
|
|
|
31 |
- uses: actions/checkout@v3
|
32 |
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
|
33 |
- name: Build
|
|
|
20 |
- stable
|
21 |
|
22 |
steps:
|
23 |
+
- uses: actions/checkout@v3
|
24 |
+
- run: rustup toolchain install stable --profile minimal
|
25 |
+
- uses: Swatinem/rust-cache@v2
|
26 |
with:
|
27 |
+
prefix-key: ""
|
28 |
+
shared-key: ""
|
29 |
+
key: ""
|
30 |
+
env-vars: ""
|
31 |
+
workspaces: ""
|
32 |
+
cache-directories: ""
|
33 |
+
cache-targets: ""
|
34 |
+
cache-on-failure: ""
|
35 |
+
cache-all-crates: ""
|
36 |
+
save-if: ""
|
37 |
- uses: actions/checkout@v3
|
38 |
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
|
39 |
- name: Build
|