File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -12,31 +12,31 @@ jobs:
12
12
steps :
13
13
- uses : actions/checkout@v4
14
14
- uses : dtolnay/rust-toolchain@stable
15
- - run : cargo check
15
+ - run : cargo check --workspace
16
16
17
17
test :
18
18
name : Test Suite
19
19
runs-on : ubuntu-latest
20
20
steps :
21
21
- uses : actions/checkout@v4
22
22
- uses : dtolnay/rust-toolchain@stable
23
- - run : cargo test
23
+ - run : cargo test --workspace
24
24
25
25
unstable :
26
26
name : Test Suite (unstable)
27
27
runs-on : ubuntu-latest
28
28
steps :
29
29
- uses : actions/checkout@v4
30
30
- uses : dtolnay/rust-toolchain@nightly
31
- - run : cargo test --features unstable
31
+ - run : cargo test --workspace -- features unstable
32
32
33
33
very_unstable :
34
34
name : Test Suite (very_unstable)
35
35
runs-on : ubuntu-latest
36
36
steps :
37
37
- uses : actions/checkout@v4
38
38
- uses : dtolnay/rust-toolchain@nightly
39
- - run : cargo test --features very_unstable
39
+ - run : cargo test --workspace -- features very_unstable
40
40
41
41
lints :
42
42
name : Lints
47
47
with :
48
48
components : clippy, rustfmt
49
49
- run : cargo fmt --all --check
50
- - run : cargo clippy
50
+ - run : cargo clippy --workspace
You can’t perform that action at this time.
0 commit comments