Skip to content

Commit b2fc9bc

Browse files
committed
Add commit test.
1 parent 5fa6f45 commit b2fc9bc

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/go-test.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Go Test
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
test:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
18+
- name: Setup Go
19+
uses: actions/setup-go@v5
20+
with:
21+
go-version-file: go.mod
22+
cache: true
23+
24+
- name: Run Tests
25+
run: go test ./...

0 commit comments

Comments
 (0)