소스 검색

travis: check code style with rustfmt

Mokhtar Naamani 5 년 전
부모
커밋
90c6dae154
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      .travis.yml

+ 4 - 1
.travis.yml

@@ -3,7 +3,10 @@ rust:
   - 1.34.0
 cache:
   - cargo
-script:
+before_script:
+  - rustup component add rustfmt
   - ./setup.sh
+script:
+  - cargo fmt --all -- --check
   - ./build.sh
   - cargo test --verbose --all