12 lines
205 B
Bash
Executable File
12 lines
205 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
cargo build --verbose
|
|
cargo test --verbose
|
|
|
|
if [[ $TRAVIS_RUST_VERSION == "nightly" ]]; then
|
|
cargo build --verbose --features no_std
|
|
cargo test --verbose --features no_std
|
|
fi
|