Skip to content

Commit

Permalink
fix typo in last commit and force modules via Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronhurt committed Apr 15, 2019
1 parent fae4efa commit efac452
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Expand Up @@ -24,6 +24,10 @@ GORELEASER = $(shell which goreleaser)
CI_CONSUL_VERSION=1.4.2
CI_VAULT_VERSION=1.0.3

# force go modules
GO111MODULE = on
export GO111MODULE

# all is the default target
all: test

Expand All @@ -44,7 +48,7 @@ build: gofmt

# test runs the tests
test: build
go test -mod=vendor -v -test.timeout 15s /...
go test -mod=vendor -v -test.timeout 15s ./...

# gofmt runs gofmt on the code
gofmt:
Expand Down

0 comments on commit efac452

Please sign in to comment.