Browse Source

Test more compiler feature combinations in CI

timvisee 7 years ago
parent
commit
0326148b9c
1 changed files with 6 additions and 0 deletions
  1. 6 0
      .travis.yml

+ 6 - 0
.travis.yml

@@ -13,6 +13,12 @@ addons:
 
 
 # Main build
 # Main build
 script:
 script:
+  # Default features configuration
 - cargo build --verbose --all
 - cargo build --verbose --all
+
+  # Other feature combinations 
 - cargo build --no-default-features --verbose --all
 - cargo build --no-default-features --verbose --all
+- cargo build --features no-color --verbose --all
+
+  # Tests
 - cargo test --verbose --all
 - cargo test --verbose --all