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

Add Go 1.15 to the build matrix #1146

Merged
merged 1 commit into from
Aug 13, 2020
Merged
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
15 changes: 8 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
language: go
go:
# Keep the most recent production release at the top
- 1.14.x
- 1.15.x
# Go development version
- master
# Older production releases
- 1.14.x
- 1.13.x
- 1.12.x
- 1.11.x
Expand All @@ -22,12 +23,12 @@ before_script:

jobs:
allow_failures:
- go: master
- go: master

include:
- env: DB=MYSQL8
dist: xenial
go: 1.14.x
go: 1.15.x
services:
- docker
before_install:
Expand All @@ -47,7 +48,7 @@ jobs:

- env: DB=MYSQL57
dist: xenial
go: 1.14.x
go: 1.15.x
services:
- docker
before_install:
Expand All @@ -67,7 +68,7 @@ jobs:

- env: DB=MARIA55
dist: xenial
go: 1.14.x
go: 1.15.x
services:
- docker
before_install:
Expand All @@ -87,7 +88,7 @@ jobs:

- env: DB=MARIA10_1
dist: xenial
go: 1.14.x
go: 1.15.x
services:
- docker
before_install:
Expand All @@ -112,7 +113,7 @@ jobs:
packages:
- mysql
update: true
go: 1.14.x
go: 1.15.x
before_install:
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
Expand Down