maud/.travis.yml

14 lines
514 B
YAML

language: rust
rust: nightly
sudo: false
before_script:
- cargo install clippy || true
script:
- ( cd maud && cargo test --all-features )
- if command -v cargo-clippy; then ( cd maud && cargo clippy -- -D warnings ); fi
- ( cd maud_macros && cargo test --all-features )
- if command -v cargo-clippy; then ( cd maud_macros && cargo clippy -- -D warnings ); fi
- ( cd maud_extras && cargo test --all-features )
- if command -v cargo-clippy; then ( cd maud_extras && cargo clippy -- -D warnings ); fi