Skip to content

Commit 5fa5564

Browse files
authored
Merge pull request #19 from tbg/tbg/ci-go-test
2 parents 959693b + 42128f1 commit 5fa5564

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/go-test.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Go 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@v4
14+
15+
- uses: actions/setup-go@v5
16+
with:
17+
go-version-file: go.mod
18+
19+
- run: go test ./...

0 commit comments

Comments
 (0)