ash/.travis.yml
2018-12-09 09:11:19 +01:00

28 lines
531 B
YAML

os:
- linux
- osx
language: rust
before_script:
- rustup component add rustfmt
rust:
- stable
script:
- cargo fmt --all -- --check
- cargo build --manifest-path ash/Cargo.toml
- cargo build --manifest-path examples/Cargo.toml
- cargo build --manifest-path generator/Cargo.toml
branches:
only:
# This is where pull requests from "bors r+" are built.
- staging
# This is where pull requests from "bors try" are built.
- trying
# Uncomment this to enable building pull requests.
- master