Skip to content

Commit b7402ff

Browse files
committed
feat(workflow): add pacake test
1 parent 30816e9 commit b7402ff

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/test.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: test
2+
on: [ push, pull_request ]
3+
4+
jobs:
5+
test_ubuntu:
6+
name: Run Test on Ubuntu 🧪
7+
runs-on: ubuntu-latest
8+
steps:
9+
10+
- name: Checkout Code
11+
uses: actions/checkout@v4
12+
13+
- name: Setup Go Environment
14+
uses: actions/setup-go@master
15+
16+
- name: Run Go Test
17+
run: go test $(go list ./...)

0 commit comments

Comments
 (0)