aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorKevin J Hoerr <kjhoerr@submelon.tech>2018-08-26 01:38:28 -0400
committerKevin Hoerr <kjhoerr@submelon.tech>2018-08-31 23:24:45 -0400
commit0965d62be00a7820f97284704dc71f37e661b412 (patch)
tree5a5c9d69062e24aa926eb30447c5ff27e0a65492 /.travis.yml
parent1e3946f04b5b602d3869a285d897acb0ba2b3c35 (diff)
downloadaugust-offensive-0965d62be00a7820f97284704dc71f37e661b412.tar.gz
august-offensive-0965d62be00a7820f97284704dc71f37e661b412.tar.bz2
august-offensive-0965d62be00a7820f97284704dc71f37e661b412.zip
Begin migration to Rust; Add actix-web, diesel as main dependencies
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml19
1 files changed, 15 insertions, 4 deletions
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