We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a92746b commit 231a26dCopy full SHA for 231a26d
.github/workflows/main.yml
@@ -27,13 +27,14 @@ jobs:
27
- name: Checkout sources
28
uses: actions/checkout@v1
29
30
- - name: Cache Rust dependencies
31
- uses: actions/cache@v1
32
- with:
33
- path: target
34
- key: ${{ runner.OS }}-build-${{ hashFiles('**\Cargo.lock') }}
35
- restore-keys: |
36
- ${{ runner.OS }}-build-
+# @TODO: Doesn't work + `cargo.lock` is not usable anymore.
+# - name: Cache Rust dependencies
+# uses: actions/cache@v1
+# with:
+# path: target
+# key: ${{ runner.OS }}-build-${{ hashFiles('**\Cargo.lock') }}
+# restore-keys: |
37
+# ${{ runner.OS }}-build-
38
39
- name: Install stable Rust
40
uses: actions-rs/toolchain@v1
0 commit comments