mirror of
https://github.com/NLnetLabs/routinator.git
synced 2024-05-19 06:50:04 +00:00
20 lines
327 B
YAML
20 lines
327 B
YAML
language: rust
|
|
os:
|
|
- linux
|
|
- windows
|
|
rust:
|
|
- stable
|
|
- beta
|
|
- nightly
|
|
- 1.34.0 # The minimal Rust version we claim we need.
|
|
matrix:
|
|
allow_failures:
|
|
- rust: nightly
|
|
fast_finish: true
|
|
before_script:
|
|
- rustup component add clippy
|
|
script:
|
|
- cargo clippy -- -D warnings
|
|
- cargo test --verbose
|
|
cache: cargo
|