瀏覽代碼

Test more compiler feature combinations in CI

timvisee 7 年之前
父節點
當前提交
0326148b9c
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      .travis.yml

+ 6 - 0
.travis.yml

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