environment: matrix: - TARGET: x86_64-pc-windows-msvc RUST_VERSION: stable branches: only: - master - /v?\d(\.\d)*/ install: - set PATH=C:\Program Files\Git\mingw64\bin;%PATH% - curl -sSf -o rustup-init.exe https://win.rustup.rs/ - rustup-init.exe -y --default-host %TARGET% --default-toolchain %RUST_VERSION% - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin - rustc -vV - cargo -vV build: false test_script: - cargo check - cargo test