.travis.yml 197 B

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