File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change 11
11
RUST_BACKTRACE : 1
12
12
13
13
jobs :
14
- checks :
14
+ stable- checks :
15
15
runs-on : ubuntu-latest
16
16
steps :
17
17
- uses : actions/checkout@v4
18
18
- uses : dtolnay/rust-toolchain@stable
19
19
with :
20
20
toolchain : stable
21
- components : clippy, rustfmt
21
+ components : rustfmt
22
22
- run : cargo fmt -- --check
23
23
- run : cargo test
24
- - run : cargo clippy
25
24
# Ensure that no untracked or tracked files have been added or modified.
26
25
- run : git diff --check --exit-code
26
+
27
+ nightly-checks :
28
+ runs-on : ubuntu-latest
29
+ steps :
30
+ - uses : actions/checkout@v4
31
+ - uses : dtolnay/rust-toolchain@stable
32
+ with :
33
+ toolchain : nightly
34
+ components : clippy
35
+ # Check all entries, including tests and benchmarks.
36
+ - run : cargo clippy --all-targets
You can’t perform that action at this time.
0 commit comments