minicrossterm/.travis.yml
2019-07-25 17:46:55 +02:00

19 lines
296 B
YAML

# Set up the Rust toolchain.
language: rust
rust:
- stable
before_script:
- export PATH=$PATH:/home/travis/.cargo/bin
- rustup component add rustfmt-preview
os:
- linux
- osx
- windows
script:
- cargo build
- cargo fmt -- --check
- cargo test -- --nocapture --test-threads 1