.travis.yml 198 B

123456789101112
  1. language: rust
  2. rust:
  3. - 1.38.0
  4. cache:
  5. - cargo
  6. before_script:
  7. - rustup component add rustfmt
  8. - ./setup.sh
  9. script:
  10. - cargo fmt --all -- --check
  11. - cargo test --verbose --all
  12. - cargo build