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 db44d1f commit 55e88c2Copy full SHA for 55e88c2
.github/workflows/rust-test.yml
@@ -83,6 +83,15 @@ jobs:
83
- uses: actions/checkout@v4
84
85
- name: Install Rust (for local testing)
86
+ if: matrix.os == 'windows-latest'
87
+ run: |
88
+ curl -sSf -o rustup-init.exe https://win.rustup.rs
89
+ ./rustup-init.exe -y --default-toolchain stable --profile minimal
90
+ echo "$HOME\.cargo\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
91
+ $env:Path += ";$HOME\.cargo\bin"
92
+
93
+ - name: Install Rust (for local testing)
94
+ if: matrix.os != 'windows-latest'
95
run: |
96
curl https://sh.rustup.rs -sSf | sh -s -- -y
97
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
0 commit comments