salsa/.travis.yml
2019-09-30 15:17:23 +03:00

29 lines
671 B
YAML

language: rust
sudo: false
rust:
- nightly
- beta
- stable
cache:
- cargo
matrix:
allow_failures:
- rust: nightly
before_install:
- cargo install mdbook --version '0.3.1' --debug --force
- cargo install mdbook-linkcheck --version '0.4.0' --debug --force
script:
- RUST_BACKTRACE=1 CARGO_INCREMENTAL=0 cargo test --all
- RUST_BACKTRACE=1 CARGO_INCREMENTAL=0 cargo test --tests --all
- RUST_BACKTRACE=1 CARGO_INCREMENTAL=0 cargo test --examples --all
- cd book && mdbook build && mdbook test
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN
local-dir: book/book/html
keep-history: false
on:
branch: master