Skip to content

Commit

Permalink
explicitly install components for local makefile pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
wmmc88 committed Apr 10, 2024
1 parent 17f7e02 commit 0611a97
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/local-development-makefile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,19 @@ jobs:
- name: Install Nightly Rust Toolchain (${{ matrix.target_triple }})
uses: dtolnay/rust-toolchain@nightly
with:
components: clippy, rustfmt
targets: ${{ matrix.target_triple }}

- name: Install Beta Rust Toolchain (${{ matrix.target_triple }})
uses: dtolnay/rust-toolchain@beta
with:
components: clippy
targets: ${{ matrix.target_triple }}

- name: Install Stable Rust Toolchain (${{ matrix.target_triple }})
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
targets: ${{ matrix.target_triple }}

- name: Install Cargo Make
Expand Down

0 comments on commit 0611a97

Please sign in to comment.