diff options
author | 2022-12-16 00:28:06 +0100 | |
---|---|---|
committer | 2022-12-16 00:28:06 +0100 | |
commit | 49f355394366e90b75040bb7cc7c52a231503dcc (patch) | |
tree | 3af2d1ca57e4df06e8f41c49719f971788dab33f | |
parent | 89a1b535b7a84b1adf9c179501832d02d1d04712 (diff) | |
download | rtic-49f355394366e90b75040bb7cc7c52a231503dcc.tar.gz rtic-49f355394366e90b75040bb7cc7c52a231503dcc.tar.zst rtic-49f355394366e90b75040bb7cc7c52a231503dcc.zip |
Add clippy component
-rw-r--r-- | .github/workflows/build.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2daad1d2..b134f038 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -74,6 +74,9 @@ jobs: - name: Fail on warnings run: sed -i 's,//deny_warnings_placeholder_for_ci,#![deny(warnings)],' src/lib.rs macros/src/lib.rs + - name: Add Rust component clippy + run: rustup component add clippy + - name: Cache Dependencies uses: Swatinem/rust-cache@v2 |