aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: acd69845bb14ad3567e357e4b475f8c0b53f723a (plain)
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
sudo: true

language: rust

cache: cargo

dist: xenial

rust:
  - stable

os:
  - linux

matrix:
  include:
    - os: linux
    - os: linux
      rust: 1.36.0
    - os: linux
      env: RUSTFMT=yes
    - os: linux
      env: CLIPPY=yes

install:
  - bash ci/install.sh

script:
  - bash ci/script.sh

branches:
  only: master

notifications:
  email:
    on_success: never