Skip to content

Commit

Permalink
travisci: add configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
hails committed May 21, 2019
1 parent 7d2401a commit 13220ed
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
language: rust

rust:
- stable

os:
- linux
- osx
- windows

env:
global:
- RUST_BACKTRACE=1

before_script:
- rustup component add rustfmt
- rustup component add clippy

script:
- cargo fmt --all -- --check &&
cargo clippy -- -D warnings &&
cargo test --verbose &&
cargo build --verbose

cache: cargo

0 comments on commit 13220ed

Please sign in to comment.