Skip to content

Commit 302adda

Browse files
committed
drop deps
1 parent 738550e commit 302adda

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

.github/workflows/test.yml

-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ jobs:
1010
uses: actions/setup-go@v5
1111
with:
1212
go-version: "1.23.4"
13-
- name: Deps
14-
run: |
15-
make dev-deps
1613
- name: Vet
1714
run: |
1815
make vet

Makefile

+3-8
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,13 @@ vet:
22
go vet -v ./...
33

44
test:
5-
gotestsum -- -v ./...
5+
go test -v ./...
66

77
test-coverage:
8-
mkdir -p coverage
9-
gotestsum -- -v ./... -coverpkg=./... -coverprofile=coverage/coverage.out
10-
go tool cover -html coverage/coverage.out -o coverage/coverage.html
8+
go test -v ./... -coverprofile=coverage.out
119

1210
open-coverage:
13-
open coverage/coverage.html
14-
15-
dev-deps:
16-
go install gotest.tools/gotestsum@latest
11+
go tool cover -html=coverage.out
1712

1813
.PHONY: build
1914
build:

0 commit comments

Comments
 (0)