File: .travis.yml

package info (click to toggle)
rust-kv-log-macro 1.0.8-5
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 188 kB
  • sloc: makefile: 2; sh: 1
file content (13 lines) | stat: -rw-r--r-- 261 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
language: rust
rust:
  - stable

before_script: |
  rustup component add rustfmt-preview &&
  rustup component add clippy-preview
script: |
  cargo fmt -- --check &&
  cargo clippy -- -D clippy &&
  cargo build --verbose &&
  cargo test  --verbose
cache: cargo