Skip to content

Commit

Permalink
Modify .travis.yml to build stable and nightly
Browse files Browse the repository at this point in the history
Fixes #138
Fixes #134
  • Loading branch information
Thomas Jespersen committed Oct 29, 2018
1 parent b9bf18d commit 1e649e5
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
language: rust
rust: nightly
script: cd test-project && cargo test
rust:
- stable
- nightly
matrix:
include:
- rust: stable
env: FEATURES="--features stable"
- rust: nightly
env: FEATURES=""

install: cargo build --verbose $FEATURES
script: cd test-project && cargo test $FEATURES

notifications:
email:
Expand Down

0 comments on commit 1e649e5

Please sign in to comment.