mirror of
https://github.com/bolkedebruin/rdpgw.git
synced 2026-03-31 16:06:35 +00:00
Update actions
This commit is contained in:
4
.github/workflows/go.yml
vendored
4
.github/workflows/go.yml
vendored
@@ -26,10 +26,10 @@ jobs:
|
|||||||
run: go get -u golang.org/x/lint/golint
|
run: go get -u golang.org/x/lint/golint
|
||||||
|
|
||||||
- name: Update go.sum
|
- name: Update go.sum
|
||||||
run: go mod tidy
|
run: make mod
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: go build -v .
|
run: make build
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: go test -cover -v ./...
|
run: go test -cover -v ./...
|
||||||
|
|||||||
6
Makefile
6
Makefile
@@ -51,6 +51,12 @@ mod:
|
|||||||
go mod tidy
|
go mod tidy
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
# test
|
||||||
|
|
||||||
|
.PHONY: test
|
||||||
|
test:
|
||||||
|
go test -cover -v ./...
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
# clean
|
# clean
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
|
|||||||
Reference in New Issue
Block a user