.travis.yml 531 B

1234567891011121314151617181920212223242526272829303132
  1. language: rust
  2. rust:
  3. - stable
  4. - beta
  5. - nightly
  6. matrix:
  7. allow_failures:
  8. - rust: stable
  9. - rust: beta
  10. fast_finish: true
  11. branches:
  12. only:
  13. # This is where pull requests from "bors r+" are build
  14. - staging
  15. # This is where pull requests from "bors try" are build
  16. - trying
  17. # This allows building of pull requests
  18. - master
  19. before_script:
  20. - rustup component add rustfmt-preview
  21. script:
  22. - cargo fmt --all -- --check
  23. - cargo build --all
  24. - cargo test --all
  25. notifications:
  26. email: change