We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2207eae commit 7e5ff94Copy full SHA for 7e5ff94
.travis.yml
@@ -11,13 +11,15 @@ matrix:
11
include:
12
- rust: nightly
13
os: linux
14
+ env: BUILD_DOCS=1
15
16
os: osx
-# - rust: nightly-x86_64-pc-windows-msvc
17
-# os: windows
18
+ - rust: nightly-x86_64-pc-windows-msvc
19
+ os: windows
20
21
script:
- - cargo fmt --all -- --check
22
- cargo check --all --benches --bins --examples --tests
23
- cargo test --all
- - cargo doc --features docs
24
+ - cargo fmt --all -- --check
25
+ - if [[ -n "$BUILD_DOCS" ]]; then cargo doc --features docs; fi
0 commit comments