Check with deadlinks

This commit is contained in:
Sergey Pepyakin 2018-01-26 16:47:30 +03:00
parent 500538099d
commit eb968766f5
1 changed files with 6 additions and 0 deletions

View File

@ -11,12 +11,18 @@ addons:
- gcc-6
- g++-6
- cmake
install:
- cargo install cargo-deadlinks
script:
- export CC=/usr/bin/gcc-6
- export CXX=/usr/bin/g++-6
- cargo test --verbose
- cargo test --manifest-path=spec/Cargo.toml
# cargo-deadlinks will check any links in docs generated by `cargo doc`.
# This is useful as rustdoc uses raw links which is error prone.
- cargo doc && cargo deadlinks
after_success: |
# Build documentation and deploy it to github pages.
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
cargo doc &&