Updated travis script.

This commit is contained in:
Tim Sarbin 2019-10-24 10:13:31 -04:00
parent 7b698ae116
commit 0b52ccd81b
2 changed files with 5 additions and 8 deletions

View File

@ -1,13 +1,6 @@
dist: xenial
language: go
go:
- 1.13.x
script: buildci.sh
git:
depth: 1
notifications:
email: false
before_script:
- go get -d ./src/App
script:
- golangci-lint run ./src/App
- go build ./src/App

4
cibuild.sh Normal file
View File

@ -0,0 +1,4 @@
#!/bin/bash
go get -d ./src/App
golangci-lint run ./src/App
go build ./src/App