We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80883e4 commit 36e49caCopy full SHA for 36e49ca
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,9 @@ on:
9
env:
10
RUST_BACKTRACE: 1
11
CARGO_TERM_COLOR: always
12
+ CARGO_INCREMENTAL: 0
13
+ SCCACHE_GHA_ENABLED: "true"
14
+ RUSTC_WRAPPER: "sccache"
15
16
jobs:
17
fmt:
@@ -43,6 +46,9 @@ jobs:
43
46
toolchain: ${{ matrix.rust }}
44
47
components: clippy
45
48
49
+ - name: Install sccache
50
+ uses: mozilla-actions/sccache-action@v0.0.6
51
+
52
- name: Cache cargo registry
53
uses: actions/cache@v4
54
with:
0 commit comments