We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddf6e3c commit 11d4b2fCopy full SHA for 11d4b2f
.github/workflows/main.yml
@@ -109,6 +109,17 @@ jobs:
109
- uses: actions/checkout@v1
110
with:
111
submodules: true
112
- - name: Install Rust
+ - name: Update Stable Rust
113
run: rustup update stable && rustup default stable && rustup component add rustfmt
114
- run: cargo fmt -- --check
115
+
116
+ clippy:
117
+ name: Clippy
118
+ runs-on: ubuntu-latest
119
+ steps:
120
+ - uses: actions/checkout@v1
121
+ with:
122
+ submodules: true
123
+ - name: Update Nightly Rust
124
+ run: rustup update nightly && rustup default nightly && rustup component add clippy
125
+ - run: cargo clippy -- -D clippy::all
0 commit comments