We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3595146 commit f036d6aCopy full SHA for f036d6a
.github/workflows/ci_bindings_c.yml
@@ -38,7 +38,9 @@ concurrency:
38
39
permissions:
40
contents: read
41
-
+env:
42
+ SCCACHE_GHA_ENABLED: "true"
43
+ RUSTC_WRAPPER: "sccache"
44
jobs:
45
test:
46
runs-on: ubuntu-latest
@@ -49,18 +51,12 @@ jobs:
49
51
uses: ./.github/actions/setup
50
52
53
- - uses: actions/cache@v4
- with:
54
- path: |
55
- ~/.cargo/bin/
56
- ~/.cargo/registry/index/
57
- ~/.cargo/registry/cache/
58
- ~/.cargo/git/db/
59
- bindings/c/target/
60
- key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
+ - name: Run sccache-cache
+ uses: mozilla-actions/sccache-action@7d986dd989559c6ecdb630a3fd2557667be217ad
61
62
- name: Clippy Check
63
working-directory: "bindings/c"
+
64
run: |
65
cargo clippy -- -D warnings
66
0 commit comments