Skip to content

Commit

Permalink
chore(go): Added testing for 1.12.x of Golang (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
durandj committed Mar 16, 2019
1 parent 85942d0 commit b729d40
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ jobs:
include:
- stage: test
name: Go 1.11.x Tests
go: 1.11.x

env:
- GO111MODULE=on

install: go get

before_script:
- wget https://github.com/go-task/task/releases/download/v2.4.0/task_linux_amd64.deb
- sudo dpkg -i task_linux_amd64.deb
- rm task_linux_amd64.deb
- task install
script:
- task test

- stage: test
name: Go 1.12.x Tests
go: 1.12.x

env:
- GO111MODULE=on
Expand All @@ -20,6 +38,7 @@ jobs:

- stage: test
name: Go master Tests
go: master

env:
- GO111MODULE=on
Expand All @@ -36,6 +55,7 @@ jobs:

- stage: deploy
name: Deploy
go: 1.12.x

env:
- GO111MODULE=on
Expand Down

0 comments on commit b729d40

Please sign in to comment.