Skip to content

Commit

Permalink
Merge pull request #1 from UCSD-E4E/feature/install-clippy
Browse files Browse the repository at this point in the history
fix: install clippy from rustup
  • Loading branch information
ccrutchf authored Dec 1, 2024
2 parents 11b626b + 876a4c8 commit 22e02d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
sudo apt-get install -y libdbus-1-dev \
pkg-config
- name: Install Clippy
run: cargo install clippy
run: rustup component add clippy
- name: Run Clippy
run: cargo clippy -- -D warnings
- name: Run tests
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Install Rust Toolchains
run: rustup target add x86_64-pc-windows-msvc aarch64-pc-windows-msvc
- name: Install Clippy
run: cargo install clippy
run: rustup component add clippy
- name: Run Clippy
run: cargo clippy -- -D warnings
- name: Run tests
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
- name: Install Rust Toolchains
run: rustup target add x86_64-apple-darwin aarch64-apple-darwin
- name: Install Clippy
run: cargo install clippy
run: rustup component add clippy
- name: Run Clippy
run: cargo clippy -- -D warnings
- name: Run tests
Expand Down

0 comments on commit 22e02d1

Please sign in to comment.