1005387c2c
Known minimum version to build [regex](https://crates.io/crates/regex). Old enough as it is, we're not c++ here!
18 lines
311 B
YAML
18 lines
311 B
YAML
language: rust
|
|
|
|
matrix:
|
|
include:
|
|
- rust: stable
|
|
- rust: beta
|
|
- rust: nightly
|
|
- rust: 1.28.0
|
|
- rust: nightly
|
|
env: CLIPPY
|
|
script: |
|
|
if rustup component add clippy-preview; then
|
|
cargo clippy -- -Dclippy
|
|
fi
|
|
|
|
script:
|
|
- cargo build
|
|
- cargo test
|