1environment: 2 matrix: 3 - TARGET: x86_64-pc-windows-msvc 4 - TARGET: i686-pc-windows-msvc 5 - TARGET: x86_64-pc-windows-gnu 6 - TARGET: i686-pc-windows-gnu 7install: 8 - curl -sSf -o rustup-init.exe https://win.rustup.rs/ 9 - rustup-init.exe -y --default-host %TARGET% 10 - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin 11 - rustc -vV 12 - cargo -vV 13build: false 14test_script: 15 - cargo build --verbose 16 - cargo test --verbose 17