toml-rs/.travis.yml

24 lines
550 B
YAML
Raw Normal View History

2014-09-16 09:15:24 -05:00
language: rust
2019-01-02 16:15:41 -06:00
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
2014-06-20 19:08:00 -05:00
script:
- cargo test
2017-11-12 19:26:09 -06:00
- cargo test --manifest-path test-suite/Cargo.toml
2014-09-22 23:43:30 -05:00
- rustdoc --test README.md -L target
notifications:
email:
on_success: never