Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Golang 1.13 #105

Merged
merged 6 commits into from
Feb 5, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@ sudo: required
language: go

go:
- 1.x

cache:
directories:
- $GOPATH/pkg/dep
- 1.13.x

services:
- mysql
Expand All @@ -22,14 +18,16 @@ env:
install:
- mkdir -p $GOPATH/bin
- go get github.com/go-playground/overalls
- make deps
- go get github.com/goreleaser/goreleaser
aleksandrzhiliaev marked this conversation as resolved.
Show resolved Hide resolved

script:
- make test

after_success:
- $GOPATH/bin/overalls -project=github.com/hellofresh/klepto -covermode=count
- if [ "$TRAVIS_SECURE_ENV_VARS" == "true" ]; then bash <(curl -s https://codecov.io/bash) -f overalls.coverprofile; fi

# calls goreleaser
# calls goreleaser
deploy:
- provider: script
skip_cleanup: true
Expand Down
Loading