File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 48
48
steps :
49
49
- uses : actions/checkout@v4
50
50
- uses : dtolnay/rust-toolchain@stable
51
+ with :
52
+ components : rustfmt
51
53
- name : Check formatting
52
54
run : cargo fmt --all -- --check
53
55
Check :
74
76
- arm-linux-androideabi
75
77
- arm64_32-apple-watchos
76
78
- armv7-linux-androideabi
77
- - armv7-sony-vita-newlibeabihf
79
+ # Broken, see https://github.com/rust-lang/rust/issues/147437.
80
+ # - armv7-sony-vita-newlibeabihf
78
81
- armv7-unknown-linux-ohos
79
82
- i686-linux-android
80
83
# Broken, see https://github.com/rust-lang/socket2/issues/539.
@@ -117,6 +120,8 @@ jobs:
117
120
steps :
118
121
- uses : actions/checkout@v4
119
122
- uses : dtolnay/rust-toolchain@stable
123
+ with :
124
+ components : clippy
120
125
- name : Run Clippy
121
126
run : cargo clippy --all-targets --all-features -- -D warnings
122
127
CheckExternalTypes :
Original file line number Diff line number Diff line change 54
54
55
55
#![ deny( missing_docs, missing_debug_implementations, rust_2018_idioms) ]
56
56
// Automatically generate required OS/features for docs.rs.
57
- #![ cfg_attr( docsrs, feature( doc_auto_cfg ) ) ]
57
+ #![ cfg_attr( docsrs, feature( doc_cfg ) ) ]
58
58
// Disallow warnings when running tests.
59
59
#![ cfg_attr( test, deny( warnings) ) ]
60
60
// Disallow warnings in examples.
You can’t perform that action at this time.
0 commit comments