Skip to content

Commit 0fb5d15

Browse files
committed
Add gh action for checks and tests
1 parent 59c1b71 commit 0fb5d15

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/go.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: Go
22

33
on:
44
push:
5-
branches: [ main ]
65
pull_request:
76
branches: [ main ]
87

@@ -18,11 +17,11 @@ jobs:
1817
with:
1918
go-version: 1.21
2019

21-
- name: Build
22-
run: go build -v ./...
23-
2420
- name: Test
25-
run: go test ./...
21+
run: make test
22+
23+
- name: Checks
24+
run: make checks
2625

2726
- name: Benchmark
2827
run: go test -v -run=XXX -benchmem -bench=. ./...

0 commit comments

Comments
 (0)