From 345b8448859b88828a5efa277961267ebda88d2e Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 18 Nov 2018 02:41:38 -0800 Subject: [PATCH] Test stable support in Travis --- .travis.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index c99734a..f8c01c9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,14 @@ language: rust -rust: - - nightly + cache: directories: - /home/travis/.cargo -script: - - cargo test + +matrix: + include: + - rust: nightly + script: cargo test + - rust: beta + script: cargo check --manifest-path examples/wasm/Cargo.toml + - rust: stable + script: cargo check --manifest-path examples/wasm/Cargo.toml