aboutsummaryrefslogtreecommitdiff
path: root/.appveyor.yml
blob: 10bc9619b9877be834ee67f52722301f66b479a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
environment:
  matrix:
  - TOOLCHAIN: stable
  - TOOLCHAIN: nightly

install:
  - ps: Start-FileDownload 'https://static.rust-lang.org/rustup/dist/i686-pc-windows-gnu/rustup-init.exe'
  - rustup-init.exe -y --profile minimal --default-toolchain %TOOLCHAIN%
  - set PATH=%PATH%;%USERPROFILE%\.cargo\bin

build_script:
  - cargo build --all-features

test_script:
  - cargo test --all-features