1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
language: rust
rust:
- nightly
sudo: false
cache: cargo
matrix:
include:
- name: cargo test
os: osx
- name: cargo test
os: linux
- name: cargo clippy
rust: nightly
script:
- if rustup component add clippy-preview;
then
cargo clippy -- -Dwarnings;
else
echo 'Skipping clippy';
fi
- name: cargo doc
rust: nightly
script:
- RUSTDOCFLAGS=-Dwarnings cargo doc
script:
- cargo build
- cargo test
- cargo test --release
notifications:
email:
on_success: never