maud/.travis.yml

15 lines
514 B
YAML
Raw Normal View History

2014-12-17 21:29:25 +13:00
language: rust
2015-05-26 22:35:10 +12:00
rust: nightly
sudo: false
2016-11-06 12:49:44 +13:00
before_script:
- cargo install clippy || true
2016-11-06 12:49:44 +13:00
2014-12-17 21:29:25 +13:00
script:
2016-11-06 12:49:44 +13:00
- ( cd maud && cargo test --all-features )
- if command -v cargo-clippy; then ( cd maud && cargo clippy -- -D warnings ); fi
2016-11-06 12:49:44 +13:00
- ( cd maud_macros && cargo test --all-features )
- if command -v cargo-clippy; then ( cd maud_macros && cargo clippy -- -D warnings ); fi
2016-11-22 22:17:15 +13:00
- ( cd maud_extras && cargo test --all-features )
- if command -v cargo-clippy; then ( cd maud_extras && cargo clippy -- -D warnings ); fi