From 0965d62be00a7820f97284704dc71f37e661b412 Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Sun, 26 Aug 2018 01:38:28 -0400 Subject: Begin migration to Rust; Add actix-web, diesel as main dependencies --- .travis.yml | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 5061bce..22447f1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,15 @@ -language: php -php: - - '7.0' -script: phpunit --bootstrap autoload.php test +language: rust +rust: + - stable + - beta + - nightly +cache: cargo + +matrix: + allow_failures: + - rust: nightly + fast_finish: true + +script: + - cargo build --verbose --all + - cargo test --verbose --all \ No newline at end of file -- cgit