diff options
author | Jake Howard <[email protected]> | 2021-03-27 15:10:00 +0000 |
---|---|---|
committer | Jake Howard <[email protected]> | 2021-03-27 15:10:00 +0000 |
commit | 828a060698dba968e98064af90ffd8022b4d490e (patch) | |
tree | c930572082c594b4afd10cc25a6dd5b889f3240f /.github | |
parent | 3e5971b9dbfa0eabe69b682d848009741b435758 (diff) | |
download | vaultwarden-828a060698dba968e98064af90ffd8022b4d490e.tar.gz vaultwarden-828a060698dba968e98064af90ffd8022b4d490e.zip |
Run clippy on CI
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d7ed5618..e2084f9b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -82,10 +82,11 @@ jobs: with: profile: minimal target: ${{ matrix.target-triple }} + components: clippy # End Uses the rust-toolchain file to determine version - # Run cargo tests (In release mode to speed up cargo build afterwards) + # Run cargo tests (In release mode to speed up future builds) - name: '`cargo test --release --features ${{ matrix.features }} --target ${{ matrix.target-triple }}`' uses: actions-rs/cargo@v1 with: @@ -94,6 +95,15 @@ jobs: # End Run cargo tests + # Run cargo clippy (In release mode to speed up future builds) + - name: '`cargo clippy --release --features ${{ matrix.features }} --target ${{ matrix.target-triple }}`' + uses: actions-rs/cargo@v1 + with: + command: clippy + args: --release --features ${{ matrix.features }} --target ${{ matrix.target-triple }} + # End Run cargo clippy + + # Build the binary - name: '`cargo build --release --features ${{ matrix.features }} --target ${{ matrix.target-triple }}`' uses: actions-rs/cargo@v1 |