Skip to content

Commit

Permalink
Merge pull request #5 from companieshouse/clean-dependencies
Browse files Browse the repository at this point in the history
 Clean up unused dependencies using go mod tidy
  • Loading branch information
Divya committed Apr 6, 2020
2 parents f7c2f9b + 63d3fd1 commit be8d28d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ TESTS ?= ./...
GO111MODULE = on

.PHONY: all
all: fmt build test
all: clean fmt build test

.PHONY: fmt
fmt:
Expand All @@ -23,4 +23,8 @@ test-unit:

.PHONY: test-integration
test-integration:
go test $(TESTS) -run 'Integration'
go test $(TESTS) -run 'Integration'

.PHONY: clean
clean:
go mod tidy

0 comments on commit be8d28d

Please sign in to comment.