Skip to content
This repository has been archived by the owner on May 3, 2021. It is now read-only.

Commit

Permalink
always run create script (#11)
Browse files Browse the repository at this point in the history
Fix travis deployment
  • Loading branch information
JordanSussman authored Feb 15, 2018
1 parent f1e088c commit 51899f3
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
language: go

go:
- 1.9
- 1.9

script:
- |
for pkg in $(go list ./... | grep -v vendor)
do
cd $GOPATH/src/$pkg/
go vet
go test -cover -coverprofile coverage.out
done
- |
for pkg in $(go list ./... | grep -v vendor)
do
cd $GOPATH/src/$pkg/
go vet
go test -cover -coverprofile coverage.out
done
before_deploy:
- cd $TRAVIS_BUILD_DIR
- ./create.sh

deploy:
Expand All @@ -23,4 +24,4 @@ deploy:
file: "*.tgz"
skip_cleanup: true
on:
tags: true
tags: true

0 comments on commit 51899f3

Please sign in to comment.