File tree Expand file tree Collapse file tree 3 files changed +32
-1
lines changed
Expand file tree Collapse file tree 3 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Clippy
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ - staging
8+ - trying
9+ pull_request :
10+
11+ env :
12+ CARGO_TERM_COLOR : always
13+
14+ jobs :
15+ clippy :
16+ name : Clippy
17+ runs-on : ubuntu-latest
18+ steps :
19+ - uses : actions/checkout@v2
20+ with :
21+ submodules : true
22+ - name : Rustup (apply rust-toolchain.toml)
23+ run : rustup show
24+ - name : Clippy
25+ run : cargo clippy --all-targets -- -D warnings
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ status = [
33 " Test (windows-latest, nightly)" ,
44 " Test (ubuntu-latest, nightly)" ,
55 " Format check (ubuntu-latest, nightly)" ,
6+ " Clippy" ,
67 " KVM Tests" ,
78]
89delete_merged_branches = true
Original file line number Diff line number Diff line change 11[toolchain ]
22channel = " nightly-2021-05-19"
3- components = [ " rustfmt" , " rust-src" , " llvm-tools-preview" ]
3+ components = [
4+ " rust-src" ,
5+ " llvm-tools-preview" ,
6+ " rustfmt" ,
7+ " clippy" ,
8+ ]
49targets = [ " x86_64-unknown-hermit" ]
You can’t perform that action at this time.
0 commit comments