1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-23 21:32:13 +03:00

Add a travis config

This commit is contained in:
Wez Furlong 2018-02-06 21:44:26 -08:00
parent 38bfd8bdc9
commit 7229de2ce6

11
.travis.yml Normal file
View File

@ -0,0 +1,11 @@
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
script:
- cargo build --verbose --all
- cargo test --verbose --all