We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e96738 commit 38734e9Copy full SHA for 38734e9
2 files changed
.github/workflows/build-artifacts.yaml
@@ -24,6 +24,11 @@ jobs:
24
with:
25
target: aarch64-unknown-linux-musl
26
27
+ - name: Cache Cargo dependencies
28
+ uses: Swatinem/rust-cache@v2
29
+ with:
30
+ key: aarch64-unknown-linux-musl
31
+
32
- name: Install base dependencies
33
run: |
34
sudo apt-get update
.github/workflows/pull-request.yml
@@ -25,6 +25,9 @@ jobs:
uses: dtolnay/rust-toolchain@stable
toolchain: stable
- name: Install cargo-nextest
uses: taiki-e/install-action@nextest
@@ -63,5 +66,8 @@ jobs:
63
66
64
67
components: clippy
65
68
69
70
71
72
- name: Run cargo clippy
- run: cargo clippy -- -D warnings
73
+ run: cargo clippy -- -D warnings
0 commit comments