language: rust
rust:
- stable
- beta
- nightly
script:
- cargo test
matrix:
include:
- name: cargo fmt
install:
- rustup component add rustfmt
script:
- cargo fmt --all -- --check
- name: cargo clippy
install:
- rustup component add clippy
script:
- cargo clippy --lib --tests -- -Dwarnings
- name: cargo +nightly bench
rust: nightly
script:
- cargo bench