toml-rs/.travis.yml
2019-01-02 14:15:41 -08:00

24 lines
550 B
YAML

language: rust
matrix:
include:
- rust: stable
- rust: beta
- rust: nightly
- name: "master doc to gh-pages"
rust: nightly
script:
- cargo doc --no-deps
deploy:
provider: script
script: curl -LsSf https://git.io/fhJ8n | rustc - && (cd target/doc && ../../rust_out)
skip_cleanup: true
on:
branch: master
script:
- cargo test
- cargo test --manifest-path test-suite/Cargo.toml
- rustdoc --test README.md -L target
notifications:
email:
on_success: never