28 lines
531 B
YAML
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
|
|
|