We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 80883e4 + fcb96f5 commit 1cd5657Copy full SHA for 1cd5657
2 files changed
.cargo/config.toml
@@ -0,0 +1,5 @@
1
+[build]
2
+# Use sccache for faster compilation
3
+# Install: cargo install sccache
4
+# To enable: Set RUSTC_WRAPPER=sccache in your environment
5
+# rustc-wrapper = "sccache" # Uncomment after installing sccache
.github/workflows/ci.yml
@@ -9,6 +9,7 @@ on:
9
env:
10
RUST_BACKTRACE: 1
11
CARGO_TERM_COLOR: always
12
+ RUSTC_WRAPPER: "sccache"
13
14
jobs:
15
fmt:
@@ -31,7 +32,7 @@ jobs:
31
32
strategy:
33
matrix:
34
os:
- - ubuntu-latest
35
+ - ubuntu-latest-m
36
- macos-latest
37
rust: [stable]
38
steps:
@@ -43,6 +44,9 @@ jobs:
43
44
toolchain: ${{ matrix.rust }}
45
components: clippy
46
47
+ - name: Install sccache
48
+ uses: mozilla-actions/sccache-action@v0.0.6
49
+
50
- name: Cache cargo registry
51
uses: actions/cache@v4
52
with:
0 commit comments