diff --git a/.travis.yml b/.travis.yml index 63b3b50..9177105 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,9 +6,9 @@ before_script: - rustup component add clippy-preview --toolchain=nightly script: - - cargo build --features="iron" - - cargo build --features="rocket" - - cargo build --features="actix-web" + - (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) - |