mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-15 17:28:09 +00:00
21 lines
387 B
YAML
21 lines
387 B
YAML
language: rust
|
|
|
|
matrix:
|
|
include:
|
|
- rust: stable
|
|
before_script:
|
|
- rustup component add rustfmt-preview
|
|
script:
|
|
- cargo fmt --all -- --write-mode=diff
|
|
- cargo test
|
|
- rust: nightly
|
|
before_script:
|
|
- rustup component add clippy-preview
|
|
script:
|
|
- cargo clippy
|
|
|
|
branches:
|
|
only:
|
|
- staging
|
|
- master
|
|
- trying
|