File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 21
21
- name : Check formatting
22
22
run : cargo fmt --all -- --check
23
23
24
+ lints :
25
+ name : Check lints
26
+ runs-on : ubuntu-latest
27
+ steps :
28
+ - uses : actions/checkout@v4
29
+ - name : Check formatting
30
+ run : cargo clippy --all-targets -- -D clippy::all -D clippy::cargo
31
+
24
32
docs :
25
33
name : Check documentation
26
34
runs-on : ubuntu-latest
30
38
run : RUSTDOCFLAGS="-Dwarnings" cargo doc --document-private-items --no-deps
31
39
32
40
check :
33
- name : Check
41
+ name : Check for errors
34
42
runs-on : ubuntu-latest
35
43
continue-on-error : true
36
44
strategy :
61
69
toolchain : ${{ matrix.toolchain }}
62
70
- name : Install Rust target
63
71
run : rustup target add ${{ matrix.target }}
64
- - name : Check formatting
65
- run : cargo fmt --all -- --check
66
- - name : Check lints
67
- run : cargo clippy --all-targets -- -D clippy::all -D clippy::cargo
68
72
- name : Check source
69
73
run : cargo check --target ${{ matrix.target }} --workspace --all-targets
70
74
- name : Check all features source
You can’t perform that action at this time.
0 commit comments