mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
11 lines
335 B
YAML
11 lines
335 B
YAML
language: rust
|
|
rust: nightly
|
|
sudo: false
|
|
|
|
script:
|
|
- python util/update_lints.py -c
|
|
- cargo build --features debugging
|
|
- cargo test --features debugging
|
|
|
|
# only test regex_macros if it compiles
|
|
- if [[ "$(cargo build --features 'debugging test-regex_macros')" = 101 ]]; then cargo test --features 'debugging test-regex_macros'; fi
|