granite-rust/.travis.yml
Aleksey Kladov 1edb58a802 reformat
2018-07-30 14:08:06 +03:00

23 lines
447 B
YAML

language: rust
matrix:
include:
- rust: stable
before_script:
- rustup component add rustfmt-preview
script:
- cargo fmt --all -- --check
- cargo test
- cargo gen-kinds --verify
- cargo gen-tests --verify
- rust: nightly
before_script:
- rustup component add clippy-preview
script:
- cargo clippy
branches:
only:
- staging
- master
- trying