diff --git a/.travis.yml b/.travis.yml index 33276f1..b4e18b7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,3 +2,7 @@ language: rust rust: - stable + +script: + - cargo build --manifest-path ash/Cargo.toml + - cargo build --manifest-path examples/Cargo.toml diff --git a/appveyor.yml b/appveyor.yml index d4eb965..7a14b4b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -13,5 +13,5 @@ install: - rustc -vV - cargo -vV build_script: - - cargo build - - cd examples && cargo build + - cargo build --manifest-path ash/Cargo.toml + - cargo build --manifest-path examples/Cargo.toml