diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..02c1695e3 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: rust + +rust: + - stable + +before_script: + - rustup component add clippy + - rustup component add rustfmt + +script: + - cargo build --release + - cargo test + - cargo clippy --all-targets --all-features -- -D warnings + - cargo fmt --all -- --check