blob: 357ec71bca544f8f21018404c66785eb1bdbf6a9 [file] [log] [blame]
#!/bin/bash
set -ev
if [ "${TRAVIS_RUST_VERSION}" = "stable" ]; then
cargo build
cargo test
elif [ "${TRAVIS_RUST_VERSION}" = "beta" ]; then
cargo build
cargo test
else
cargo build
cargo test
fi