diff --git a/.travis.yml b/.travis.yml index acc892e..7bad4de 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,5 +12,10 @@ cache: cargo matrix: allow_failures: - rust: nightly + before_install: - git submodule update --init --recursive + +script: + - cargo build --all --verbose + - cargo test --all --verbose diff --git a/Cargo.toml b/Cargo.toml index 5a6a144..0810c48 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,3 +11,6 @@ categories = ["gui", "api-bindings"] [dependencies] imgui-sys = { version = "0.0.13-pre", path = "imgui-sys" } + +[workspace] +members = ["imgui-sys", "imgui-glium-renderer"]