jobs: build: runs-on: windows-host container: image: mcr.microsoft.com/windows/servercore:ltsc2019 options: --isolation=process steps: - name: Install Rust run: | curl -sSf -o rustup-init.exe https://win.rustup.rs/ .\rustup-init.exe -y --default-toolchain stable refreshenv rustup component add rust-src - name: Build run: | cargo build --release