2019-02-28 23:00:41 +00:00
|
|
|
language: rust
|
|
|
|
cache: cargo
|
|
|
|
dist: trusty
|
2019-03-17 20:16:55 +00:00
|
|
|
os:
|
2019-02-28 23:00:41 +00:00
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
|
|
|
|
rust:
|
2020-07-15 06:42:12 +00:00
|
|
|
# FIXME: Try again when component 'rustfmt' is available
|
|
|
|
# - nightly
|
2019-02-28 23:00:41 +00:00
|
|
|
- stable
|
|
|
|
|
2019-03-17 20:16:55 +00:00
|
|
|
before_script:
|
|
|
|
- rustup component add rustfmt
|
2020-05-02 15:14:02 +00:00
|
|
|
- cargo install --force cargo-audit
|
|
|
|
- cargo generate-lockfile
|
2019-03-17 20:16:55 +00:00
|
|
|
|
2019-02-28 23:00:41 +00:00
|
|
|
script:
|
2019-03-17 20:16:55 +00:00
|
|
|
- cargo fmt --all -- --check
|
2019-02-28 23:00:41 +00:00
|
|
|
- cargo build
|
|
|
|
- cargo test
|
2020-05-02 15:14:02 +00:00
|
|
|
- cargo audit
|