Add some `before_script` necessary stuff

pull/3/head
Bradlee Speice 2019-09-19 22:47:07 -04:00
parent e6ae0ad1c5
commit e43c035aed
1 changed files with 6 additions and 1 deletions

View File

@ -11,6 +11,11 @@ os:
cache:
- cargo
before_script:
- rustup update
- rustup component add clippy
- rustup component add rustfmt
script:
- cd aeron_driver-sys
- cargo test
@ -20,5 +25,5 @@ script:
- cd ..
- cargo test
- cargo test --release
- cargo fmt --all -- --check
- cargo clippy --all
- cargo fmt --all -- --check