• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1language: rust
2
3matrix:
4  include:
5    - rust: stable
6    - rust: beta
7    - rust: nightly
8    - rust: 1.33.0
9    - rust: nightly
10      env: CLIPPY
11      script: |
12          if rustup component add clippy-preview; then
13              cargo clippy -- -Dclippy
14          fi
15
16script:
17  - cargo build
18  - cargo test
19