summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 126b85cee05d60bbb7828aa752ae7c6474cddfb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
sudo: false

os:
 - linux
 - osx

language: d

d:
 - dmd-2.074.0
 - dmd-2.073.2
 - dmd-2.072.2
 - dmd-2.071.2

env: 
 matrix:
  - ARCH=x86_64

script:
 - dub test -b unittest-cov --arch=$ARCH

after_success:
 - bash <(curl -s https://codecov.io/bash)