summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 70cc14a02e232400b99a7882e260cc6b2c61013b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
dist:     trusty
sudo:     false
language: go

go:
  - 1.9
go_import_path: github.com/dmacvicar/terraform-provider-libvirt
install:        true
before_script:
  - go get github.com/mattn/goveralls
  - go get github.com/golang/lint/golint
addons:
  apt:
    packages:
    - libvirt-dev
script:
  - make gofmtcheck
  - make vet
  - golint -set_exit_status libvirt/
  - make test
  - goveralls -coverprofile=profile.cov -service=travis-ci