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.
2 parents 2c699b1 + d10456e commit f6330ccCopy full SHA for f6330cc
.github/workflows/rust-unit.yml
@@ -12,11 +12,24 @@ env:
12
jobs:
13
build:
14
runs-on: ubuntu-latest
15
+
16
steps:
17
- uses: actions/checkout@v2
18
with:
19
submodules: true
20
21
+ - name: Cache
22
+ uses: actions/cache@v3
23
+ with:
24
+ key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
25
+ restore-keys: |
26
+ ${{ runner.os }}-cargo-
27
+ path: |
28
+ ~/.cargo/bin/
29
+ ~/.cargo/registry/
30
+ ~/.cargo/git/db/
31
+ target/
32
33
- name: Build
34
run: cargo build --verbose --workspace
35
- name: Run tests
0 commit comments