Skip to content

Commit

Permalink
fix(build): Fix build in Travis CI (#101)
Browse files Browse the repository at this point in the history
* fix(build): Fix build
  • Loading branch information
SihangYu authored Oct 3, 2024
1 parent 5ca6740 commit eaa28fb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ sudo: required
language: go

go:
- "1.14"
- "1.20.x"

env:
- DEPLOY_DOCS="$(if [[ $TRAVIS_BRANCH == 'master' && $TRAVIS_PULL_REQUEST == 'false' ]]; then echo -n 'true' ; else echo -n 'false' ; fi)"
Expand All @@ -14,8 +14,10 @@ services:

install:
- docker pull mysql:8.0
- go get golang.org/x/lint/golint
- go get github.com/kisielk/errcheck
- go install golang.org/x/lint/golint@latest
- go install github.com/kisielk/errcheck@latest
- go get github.com/spf13/afero@v0.0.0-20160919210114-52e4a6cfac46
- go get github.com/fsnotify/fsnotify@v1.3.2-0.20160816051541-f12c6236fe7b

# With the "docker" tag enabled on go test invocation (-tags docker)
# the mysql:5.6 docker container will be started
Expand Down

0 comments on commit eaa28fb

Please sign in to comment.