blob: 7ad111582f3d3943913068afa39cb216de865df5 [file] [edit]
language: rust
rust:
- stable
- beta
- nightly
jobs:
allow_failures:
- rust: nightly
fast_finish: true
before_script:
- rustup component add clippy
- rustup component add rustfmt
script:
- cargo clippy --workspace -- -D warnings
- cargo fmt --all -- --check
- cargo build --workspace --verbose
- cargo test --workspace --verbose