switching from a full build to 'cargo check' in CI

accomplishes mostly the same thing for my purposes and reduces
the CI run time.
This commit is contained in:
Benjamin Morrison 2020-07-03 19:40:48 -04:00
parent a69f61ca98
commit 3eac3167ac
Signed by untrusted user: gbmor
GPG Key ID: 8F192E4720BB0DAC
2 changed files with 3 additions and 3 deletions

View File

@ -9,5 +9,5 @@ environment:
tasks:
- build: |
cd clinte
cargo test
cargo build
cargo check
cargo test

View File

@ -15,6 +15,6 @@ before_script:
- bash <(curl https://raw.githubusercontent.com/xd009642/tarpaulin/master/travis-install.sh)
script:
- cargo build --verbose
- cargo check
- cargo tarpaulin --out Xml
- bash <(curl -s https://codecov.io/bash)