rust-analyzer/.travis.yml
2018-07-29 15:41:54 +02:00

21 lines
387 B
YAML

language: rust
matrix:
include:
- rust: stable
before_script:
- rustup component add rustfmt-preview
script:
- cargo fmt --all -- --write-mode=diff
- cargo test
- rust: nightly
before_script:
- rustup component add clippy-preview
script:
- cargo clippy
branches:
only:
- staging
- master
- trying