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 afdd162 commit 919723aCopy full SHA for 919723a
.github/workflows/dev-release.yml
@@ -18,6 +18,19 @@ jobs:
18
with:
19
version: nightly
20
21
+ - name: Cache cargo + roc
22
+ uses: actions/cache@v4
23
+ with:
24
+ path: |
25
+ ~/.cargo/registry
26
+ ~/.cargo/git
27
+ target
28
+ ~/.cache/roc
29
+ key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}-${{ env.CARGO_BUILD_TARGET || 'native' }}
30
+ restore-keys: |
31
+ ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}-
32
+ ${{ runner.os }}-cargo-
33
+
34
- name: Install dependencies
35
run: |
36
sudo apt-get update
0 commit comments