summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 0fddc031fd6cf82f0544f7a49f9b3b00ed5b826c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
script:
  - make gofmtcheck
  - make vet
  - golint -set_exit_status libvirt/
  - make test
  - goveralls -coverprofile=profile.cov -service=travis-ci