1skip_branch_with_pr: true 2branches: 3 except: 4 - staging.tmp 5environment: 6 global: 7 PATH: '%PATH%;C:\msys64\mingw64\bin;C:\msys64\usr\bin;%USERPROFILE%\.cargo\bin' 8 RUST_BACKTRACE: full 9 matrix: 10 - CHANNEL: stable 11 TARGET: x86_64-pc-windows-msvc 12 13skip_commits: 14 files: 15 - bors.toml 16 - '*.md' 17 18install: 19 - curl -sSf -o rustup-init.exe https://win.rustup.rs 20 - rustup-init -yv --default-toolchain %CHANNEL% --default-host %TARGET% 21 - rustc -vV 22 - cargo -vV 23 24build: false 25test_script: 26 - cargo check 27 - cargo check --features libloading 28 - cargo check --features implicit-link 29 - cargo check --all-features 30