blob: a8bee0a1dcc9a712b5773d05db6daf4d7f68abc7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
language: rust
rust:
- stable
- beta
script:
- cargo test --all
cache: cargo
matrix:
include:
- rust: nightly-2018-08-24
before_script:
- rustup component add rustfmt-preview
- rustup component add clippy-preview
script:
- cd testing && cargo test --no-default-features --features with-rocket
|