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 99c3230 commit 02e337eCopy full SHA for 02e337e
.github/workflows/ci.yml
@@ -44,7 +44,8 @@ jobs:
44
steps:
45
- uses: actions/checkout@master
46
- name: Install Rust
47
- run: rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
+ # --no-self-update is necessary because the windows environment cannot self-update rustup.exe.
48
+ run: rustup update ${{ matrix.rust }} --no-self-update && rustup default ${{ matrix.rust }}
49
- name: Test
50
run: ./ci/${{ matrix.crates }}.sh
51
0 commit comments