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.
1 parent 139952a commit 7a87cb8Copy full SHA for 7a87cb8
1 file changed
.github/workflows/ci.yml
@@ -24,7 +24,20 @@ jobs:
24
# Make sure CI fails on all warnings, including Clippy lints.
25
RUSTDOCFLAGS: "-Dwarnings"
26
- run: cargo test
27
-
+ check-nightly:
28
+ runs-on: ubuntu-latest
29
+ steps:
30
+ - uses: actions/checkout@v5
31
+ - uses: dtolnay/rust-toolchain@master
32
+ with:
33
+ toolchain: "nightly-2025-02-13"
34
+ components: clippy
35
+ - uses: Swatinem/rust-cache@v2
36
+ - name: Clippy on Scarb nightly version
37
+ run: cargo clippy --all-targets --all-features -- --no-deps
38
+ env:
39
+ # Make sure CI fails on all warnings, including Clippy lints.
40
+ RUSTFLAGS: "-Dwarnings"
41
udeps:
42
runs-on: ubuntu-latest
43
steps:
0 commit comments