Skip to content
This repository was archived by the owner on Feb 14, 2023. It is now read-only.

Commit d7f4166

Browse files
chore(ci): test features on travis
1 parent 555a974 commit d7f4166

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,17 @@ matrix:
1111
allow_failures:
1212
- rust: nightly
1313
fast_finish: true
14+
15+
script:
16+
- |
17+
if [ ${TRAVIS_RUST_VERSION} = "nightly" ]; then
18+
cargo build --verbose $ARGS --features "nightly";
19+
cargo test --verbose --features "nightly";
20+
cargo doc --verbose --features "nightly";
21+
fi
22+
- cargo build --verbose
23+
- cargo test --verbose
24+
- cargo doc --verbose
25+
- cargo build --verbose --no-default-features
26+
- cargo test --verbose --no-default-features
27+
- cargo doc --verbose --no-default-features

0 commit comments

Comments
 (0)