Skip to content
This repository was archived by the owner on Jan 2, 2025. It is now read-only.

Commit 287aa6b

Browse files
author
Fabien Thouraud
committed
chore(travis): support Go version from 1.11
1 parent 67a7fe9 commit 287aa6b

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.travis.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
language: go
22
go:
3-
- 1.8.x
4-
- 1.9.x
5-
- 1.10.x
63
- 1.11.x
4+
- 1.12.x
5+
- 1.13.x
76
- master
87

98
before_install:

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SHELL := $(shell which bash) # set default shell
1+
SHELL := $(shell which bash)
22
GOFMT ?= gofmt "-s"
33
PACKAGES ?= $(shell go list ./... | grep -v /vendor/)
44
GOFILES := $(shell find . -name "*.go" -type f -not -path "./vendor/*")
@@ -19,9 +19,9 @@ help: ## Show Help
1919
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
2020

2121
dep: ## Get build dependencies
22-
go get -v -u github.com/golang/dep/cmd/dep; \
2322
go get github.com/mitchellh/gox; \
24-
go get github.com/mattn/goveralls;
23+
go get github.com/mattn/goveralls; \
24+
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
2525

2626
lint: ## lint the code
2727
@hash golint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \

0 commit comments

Comments
 (0)