X Tutup
Skip to content

Commit 272ef48

Browse files
committed
add github actions test suite
1 parent f3a44ce commit 272ef48

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v6
14+
15+
- uses: actions/setup-go@v6
16+
with:
17+
go-version-file: go.mod
18+
19+
- run: go build ./...
20+
21+
- run: go test ./...

0 commit comments

Comments
 (0)
X Tutup