Skip to content

Commit 8d90624

Browse files
committed
Add CI GitHub Action
1 parent 756c914 commit 8d90624

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
3+
on: push
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-go@v5
12+
with:
13+
go-version-file: go.mod
14+
- name: Test
15+
run: ./bin/test.sh
16+
- name: Build
17+
run: ./bin/build.sh

0 commit comments

Comments
 (0)