-
-
Notifications
You must be signed in to change notification settings - Fork 176
/
.travis.yml
40 lines (35 loc) · 828 Bytes
/
.travis.yml
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
38
39
40
language: rust
rust:
- 1.45.0
- stable
- beta
- nightly
script:
- cargo build --verbose --workspace
- cargo test --verbose --workspace --no-run
- cargo test --verbose --workspace
os:
- windows
- linux
- osx
jobs:
fast_finish: true
allow_failures:
- rust: nightly
include:
- name: 'Rust: lint with Clippy'
rust: stable
install:
- rustup component add clippy
script:
- cargo clippy
- name: 'Rust: mutation testing'
rust: nightly
install:
- git clone https://github.com/llogiq/mutagen.git
- cd mutagen/mutagen-runner
- cargo install --path .
- cd ../..
script:
- cargo test --package dns --features=dns/with_mutagen -- --quiet
- cargo mutagen --package dns --features=dns/with_mutagen