1language: rust 2sudo: false 3 4rust: 5 - 1.20.0 6 - stable 7 - beta 8 - nightly 9 10branches: 11 only: 12 - master 13 14# the main build 15script: 16 - | 17 cargo build --no-default-features && 18 cargo test --no-default-features && 19 cargo build && 20 cargo test 21