forked from Azure/run-command-handler-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
27 lines (27 loc) · 926 Bytes
/
.travis.yml
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
sudo: true
services:
- docker
language: go
go: go1.16.x
install:
- sudo add-apt-repository ppa:duggan/bats --yes
- sudo apt-get update -qq
- sudo apt-get install -qq bats
- curl -sL https://deb.nodesource.com/setup_15.x | sudo bash -
- sudo apt-get install -qqy nodejs
- sudo npm install -g azure-cli
- go get -u golang.org/x/lint/golint
- go get -u github.com/ahmetalpbalkan/govvv
- go get -u -d github.com/Azure/azure-extension-foundation/...
- go mod vendor
before_script:
- docker version
- docker info
- azure telemetry --disable && azure -v
script:
- test -z "$(gofmt -s -l -w $(find . -type f -name '*.go' -not -path './vendor/*') | tee /dev/stderr)"
- test -z "$(golint . | tee /dev/stderr)"
- test -z "$(go vet -v $(go list ./... | grep -v '/vendor/') | tee /dev/stderr)"
- go list ./... | grep -v '/vendor/' | xargs go test -v -cover
- make binary
- bats integration-test/test