We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddf6e3c commit 780b8deCopy full SHA for 780b8de
.github/workflows/main.yml
@@ -102,13 +102,14 @@ jobs:
102
- run: cargo generate-lockfile && ./ci/run-docker.sh ${{ matrix.target }}
103
if: matrix.os == 'ubuntu-latest'
104
105
- rustfmt:
106
- name: Rustfmt
+ rustfmt-and-clippy:
+ name: Rustfmt and Clippy
107
runs-on: ubuntu-latest
108
steps:
109
- uses: actions/checkout@v1
110
with:
111
submodules: true
112
- name: Install Rust
113
- run: rustup update stable && rustup default stable && rustup component add rustfmt
+ run: rustup update stable && rustup default stable && rustup component add rustfmt && rustup component add clippy
114
- run: cargo fmt -- --check
115
+ - run: cargo clippy -- -D clippy::all
0 commit comments