quixotic 0.0.0

a quixotic project
Documentation

os: Visual Studio 2017

branches:
  only:
    - staging
    - trying
    - master
    - dev
    - lokathor

matrix:
  fast_finish: true

environment:
  matrix:
    - channel: 1.34.0
      target: x86_64-pc-windows-msvc
    - channel: 1.34.0
      target: x86_64-pc-windows-gnu
    - channel: beta
      target: x86_64-pc-windows-msvc
    - channel: beta
      target: x86_64-pc-windows-gnu
    # we test nightly with failures allowed on Travis
    # I just dunno how to allow failures properly with AppVeyor

install:
  - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
  - rustup-init -y --default-toolchain %channel% --default-host %target%
  - set PATH=%PATH%;%USERPROFILE%\.cargo\bin
  - rustup component add clippy
  - rustc -vV
  - cargo -vV

# On advice of retep we skip the "build" script phase
build: false

test_script:
  - cargo clippy
  - cargo build
  - cargo test -- --ignored