We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 399a92f commit f058384Copy full SHA for f058384
.github/workflows/ci.yml
@@ -52,8 +52,8 @@ jobs:
52
steps:
53
- uses: actions/checkout@v2
54
- name: Install Rust
55
- # `rustup self update` is necessary because the windows environment cannot self-update rustup.exe by `rustup update`.
56
- run: rustup self update && rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
+ # --no-self-update is necessary because the windows environment cannot self-update rustup.exe.
+ run: rustup update ${{ matrix.rust }} --no-self-update && rustup default ${{ matrix.rust }}
57
- name: Test
58
run: ./ci/test.sh
59
0 commit comments