about summary refs log tree commit diff stats
path: root/.travis.yml
blob: b86232e93e2473cdc02ed363a6048b22b10c6a92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
language: rust

rust:
  - stable

os: 
  - linux

dist: bionic

env:
  - RUST_TEST_THREADS=1

before_script:
    - bash <(curl https://raw.githubusercontent.com/xd009642/tarpaulin/master/travis-install.sh)

script:
    - cargo build --verbose
    - cargo tarpaulin --out Xml
    - bash <(curl -s https://codecov.io/bash)