From b4a1fd88b3e2ec913d2079d9d351d934af5f4dc8 Mon Sep 17 00:00:00 2001 From: Wei Tang Date: Tue, 15 May 2018 08:26:52 +0800 Subject: [PATCH] Test no_std build in CI --- .travis.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6227873..86d7a85 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,9 @@ -language: - - rust +language: rust +rust: + - nightly + - stable script: - - cargo build --release --verbose - - cargo test --verbose \ No newline at end of file + - cargo build --all --release --verbose + - cargo test --all --verbose + - if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then cargo build --no-default-features; fi