Update actions

This commit is contained in:
Bolke de Bruin 2021-05-17 11:50:44 +02:00
parent 188ce3586d
commit 20d809896d
2 changed files with 8 additions and 2 deletions

View File

@ -26,10 +26,10 @@ jobs:
run: go get -u golang.org/x/lint/golint
- name: Update go.sum
run: go mod tidy
run: make mod
- name: Build
run: go build -v .
run: make build
- name: Test
run: go test -cover -v ./...

View File

@ -51,6 +51,12 @@ mod:
go mod tidy
# ------------------------------------------------------------------------------
# test
.PHONY: test
test:
go test -cover -v ./...
# ------------------------------------------------------------------------------
# clean
.PHONY: clean