Skip to content

Commit f4bab59

Browse files
authored
Be consistent around the installation of the different toolchains
1 parent 965fb31 commit f4bab59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
timeout-minutes: 30
2424
steps:
2525
- uses: actions/checkout@v4
26-
- run: rustup default stable
26+
- run: rustup update stable && rustup default stable
2727
- run: cargo check
2828
- run: cargo test
29-
- run: rustup default nightly
29+
- run: rustup update nightly && rustup default nightly
3030
- run: cargo test --all-features
3131
cross-test:
3232
strategy:

0 commit comments

Comments
 (0)