Files
embedded-hal/ci/script.sh
2018-05-11 14:01:18 +02:00

13 lines
235 B
Bash

set -euxo pipefail
main() {
cargo check --target $TARGET
cargo check --target $TARGET --features unproven
if [ $TRAVIS_RUST_VERSION = nightly ]; then
cargo test --target $TARGET --features unproven
fi
}
main