From 3eac3167aca20af69fc665de4c1f7708e6214d56 Mon Sep 17 00:00:00 2001 From: Benjamin Morrison Date: Fri, 3 Jul 2020 19:40:48 -0400 Subject: [PATCH] switching from a full build to 'cargo check' in CI accomplishes mostly the same thing for my purposes and reduces the CI run time. --- .build.yml | 4 ++-- .travis.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.build.yml b/.build.yml index a3ffd25..dd97640 100644 --- a/.build.yml +++ b/.build.yml @@ -9,5 +9,5 @@ environment: tasks: - build: | cd clinte - cargo test - cargo build \ No newline at end of file + cargo check + cargo test \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index b86232e..92a2571 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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)