[go: up one dir, main page]

Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
language: rust
rust:
  - nightly

before_script: |
  rustup component add rustfmt-preview &&
  cargo install clippy -f
script: |
  cargo fmt -- --write-mode=diff &&
  cargo clippy -- -D clippy &&
  cargo build --verbose &&
  cargo test  --verbose
cache: cargo