mirror of
https://github.com/TECHNOFAB11/tmux-copyrat.git
synced 2025-12-12 16:10:07 +01:00
22 lines
295 B
YAML
22 lines
295 B
YAML
|
|
language: rust
|
||
|
|
cache: cargo
|
||
|
|
dist: trusty
|
||
|
|
os:
|
||
|
|
- linux
|
||
|
|
- osx
|
||
|
|
|
||
|
|
rust:
|
||
|
|
- nightly
|
||
|
|
- stable
|
||
|
|
|
||
|
|
before_script:
|
||
|
|
- rustup component add rustfmt
|
||
|
|
- cargo install --force cargo-audit
|
||
|
|
- cargo generate-lockfile
|
||
|
|
|
||
|
|
script:
|
||
|
|
- cargo fmt --all -- --check
|
||
|
|
- cargo build
|
||
|
|
- cargo test
|
||
|
|
- cargo audit
|