diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2020-06-15 23:50:41 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2020-06-16 01:00:39 -0400 |
| commit | a5046fd901d9f26c229c7f7606686f86699cb087 (patch) | |
| tree | 59a9be83f0b937a8f7f85028ee0a137211b99980 /.travis.yml | |
| parent | 9f1a786d309d9e712c408686ba58b6c90703827a (diff) | |
Set up travis for continuous testing
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..56a26b3 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,16 @@ +language: rust +rust: + - nightly + +cache: cargo + +install: + - rustup component add clippy + - cargo install cargo-udeps + - cargo build + +script: + - cargo build + - cargo test + - cargo clippy -- --deny warnings + - cargo udeps --locked --all-targets |
