orgize/.travis.yml

30 lines
426 B
YAML
Raw Normal View History

2019-02-06 11:56:44 +00:00
language: rust
rust:
- stable
- nightly
2019-02-06 11:56:44 +00:00
2019-10-09 04:56:07 +01:00
matrix:
allow_failures:
- rust: nightly
2019-02-06 11:56:44 +00:00
cache: cargo
before_script:
- rustup component add rustfmt-preview
script:
- cargo fmt --all -- --check
2019-10-10 03:44:59 +01:00
- cargo test --all-features
2019-02-06 11:56:44 +00:00
2019-09-13 14:25:35 +01:00
deploy:
provider: heroku
api_key: $HEROKU_API_KEY
app: orgize
on:
condition: "$TRAVIS_RUST_VERSION == stable"
2019-09-13 14:25:35 +01:00
2019-02-06 11:56:44 +00:00
notifications:
email:
on_failure: change
on_success: change