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 b80936b commit 045429eCopy full SHA for 045429e
.github/workflows/windows-build.yml
@@ -12,13 +12,18 @@ jobs:
12
runs-on: windows-latest
13
steps:
14
- uses: actions/checkout@v4
15
+ - name: Setup Rust toolchain
16
+ uses: dtolnay/rust-toolchain@stable
17
+ - name: Setup Rust cache
18
+ uses: Swatinem/rust-cache@v2
19
- name: System info
20
run: |
21
echo "=== Architecture ==="
22
systeminfo | findstr /B /C:"OS Name" /C:"OS Version" /C:"System Type"
23
echo "=== Toolchain ==="
24
rustc --version
25
cargo --version
26
+ cl /? 2>&1 | findstr /C:"Version" || echo "MSVC not in PATH"
27
- name: Fetch
28
run: cargo fetch
29
- name: Build
0 commit comments