Skip to content

Commit 04cea8a

Browse files
committed
add test github action
1 parent faedbcf commit 04cea8a

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/test.yaml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: test
2+
on: [ push ]
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Checkout
8+
uses: actions/checkout@v4
9+
- name: Set up Go
10+
uses: actions/setup-go@v5
11+
with:
12+
go-version: 1.23
13+
- name: Install tparse for pretty test results
14+
run: go install github.com/mfridman/tparse@latest
15+
- name: Run test
16+
run: make test

0 commit comments

Comments
 (0)