blob: c64610fba6eca30d5b5368a3f4196da20fee28c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
set -ex
echo Testing num-traits on rustc ${TRAVIS_RUST_VERSION}
# num-integer should build and test everywhere.
cargo build --verbose
cargo test --verbose
# We have no features to test...
|