.travis.yml 172 B

123456789101112131415
  1. language: rust
  2. rust:
  3. - 1.41.1
  4. cache:
  5. - cargo
  6. before_script:
  7. - rustup component add rustfmt
  8. script:
  9. - cargo fmt --all -- --check
  10. - cargo test --verbose --all