mirror of https://github.com/breard-r/acmed.git
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.
31 lines
536 B
31 lines
536 B
language: rust
|
|
|
|
rust:
|
|
- "1.40.0"
|
|
- "1.41.1"
|
|
- "1.42.0"
|
|
- "1.43.1"
|
|
- "1.44.1"
|
|
- "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
|