1 2 3 4 5 6 7 8 9 10 11
language: rust rust: - nightly - beta - stable script: - rustc --version - (rustc --version | grep nightly && echo "nightly build!") || touch not_nightly - cargo build - cargo test - if [ ! -f not_nightly ]; then cargo test --features no_core; fi