Skip to content

Commit bd1de9c

Browse files
committed
Basic Travis conf
1 parent b1a946b commit bd1de9c

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.travis.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
language: rust
2+
rust:
3+
- stable
4+
- beta
5+
- nightly
6+
matrix:
7+
allow_failures:
8+
- rust: nightly
9+
cache: cargo
10+
script:
11+
- cargo build --verbose --all
12+
- cargo test --verbose --all
13+
- cargo doc --verbose --all --no-deps
14+
deploy:
15+
provider: pages
16+
skip_cleanup: true
17+
local_dir: $TRAVIS_BUILD_DIR/target/doc
18+
github_token: $GITHUB_TOKEN
19+
on:
20+
branch: master
21+
env:
22+
- TRAVIS_CARGO_NIGHTLY_FEATURE=""

0 commit comments

Comments
 (0)