maud/.travis.yml
Chris Wong 66ddbcac98 Remove maud_lints
It's undocumented, it doesn't do much, and it keeps breaking.
2018-09-03 20:01:39 +12:00

19 lines
539 B
YAML

language: rust
rust: nightly
sudo: false
before_script:
- rustup component add clippy-preview --toolchain=nightly
script:
- (cd maud && cargo build --features="iron")
- (cd maud && cargo build --features="rocket")
- (cd maud && cargo build --features="actix-web")
- cargo test --all
- (cd benchmarks && cargo bench --no-run)
- |
CLIPPY_STATUS=0
for package in maud_htmlescape maud_macros maud maud_extras; do
(cd $package && cargo clippy -- -D warnings) || CLIPPY_STATUS=$?
done
(exit $CLIPPY_STATUS)