1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
language: rust os: linux rust: stable dist: xenial sudo: true before_install: - rustup component add clippy script: - cargo clippy - cargo build --all - cargo test --all - cargo check --all - cargo doc --all --no-deps cache: directories: - ~/.cargo