You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

34 lines
581 B

language: rust
rust:
- "1.40.0"
- "1.41.1"
- "1.42.0"
- "1.43.1"
- "1.44.1"
- "1.45.2"
- "1.46.0"
- "1.47.0"
- "stable"
- "beta"
- "nightly"
jobs:
allow_failures:
- rust: "nightly"
include:
- name: Run cargo audit
rust: stable
env: TASK=audit
fast_finish: true
install:
- cargo build --verbose
- if [ "$TASK" = "audit" ]; then cargo install cargo-audit; fi
script:
- if [ "$TASK" = "audit" ]; then
cargo audit;
else
cargo test --verbose;
fi