2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-16 10:49:55 +00:00
async-std/.travis.yml
Florian Gilcher 7e5ff9409b
Reenable windows builds (#49)
Currently deactivates windows docs build with `--feature docs`.
2019-08-16 21:46:23 +02:00

25 lines
502 B
YAML

language: rust
env:
- RUSTFLAGS="-D warnings"
before_script:
- rustup component add rustfmt
matrix:
fast_finish: true
include:
- rust: nightly
os: linux
env: BUILD_DOCS=1
- rust: nightly
os: osx
env: BUILD_DOCS=1
- rust: nightly-x86_64-pc-windows-msvc
os: windows
script:
- cargo check --all --benches --bins --examples --tests
- cargo test --all
- cargo fmt --all -- --check
- if [[ -n "$BUILD_DOCS" ]]; then cargo doc --features docs; fi