-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #167 from ferrous-systems/operation-revive-canary
add rustfmt after defaulting to beta/nightly
- Loading branch information
Showing
1 changed file
with
5 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,16 +20,13 @@ jobs: | |
with: | ||
tool: [email protected],[email protected],[email protected],[email protected] | ||
|
||
- name: Install targets | ||
run: | | ||
rustup target add thumbv7em-none-eabihf | ||
rustup component add rust-src | ||
rustup component add rustfmt | ||
- name: Update and set default Rust | ||
- name: Install targets, update, set default Rust | ||
run: | | ||
rustup update ${{ matrix.rust-channel }} | ||
rustup default ${{ matrix.rust-channel }} | ||
rustup component add rust-src | ||
rustup component add rustfmt | ||
rustup target add thumbv7em-none-eabihf | ||
- name: Find slug name | ||
run: | | ||
|
@@ -41,4 +38,4 @@ jobs: | |
env: # Or as an environment variable | ||
HIDDEN_MESSAGE: ${{ secrets.HIDDEN_MESSAGE }} | ||
run: | | ||
./build.sh "./rust-exercises-${{ env.slug }}" | ||
./build.sh "./rust-exercises-${{ env.slug }}" |