Merge pull request #4 from poanetwork/feature/add-ci

Added travis ci file to build the poagov binary on Rust's nightly channel.
This commit is contained in:
DrPeterVanNostrand 2018-05-07 08:32:34 -04:00 committed by GitHub
commit fc5289f326
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 0 deletions

10
.travis.yml Normal file
View File

@ -0,0 +1,10 @@
language: rust
rust:
- nightly
cache: cargo
script:
- RUST_BACKTRACE=1 cargo build

View File

@ -1,3 +1,5 @@
#![feature(try_from)]
extern crate chrono;
extern crate clap;
extern crate dotenv;
@ -46,3 +48,4 @@ fn main() {
}
}
}