Skip to content

Commit 4e4999c

Browse files
committed
Set up github actions
Signed-off-by: arkadeepsen <arsen@redhat.com>
1 parent dcf8192 commit 4e4999c

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/test.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Test
2+
on:
3+
merge_group:
4+
pull_request:
5+
branches:
6+
- main
7+
jobs:
8+
test:
9+
name: Unit Test
10+
runs-on: ubuntu-24.04
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v4
14+
- name: Set up Go
15+
uses: actions/setup-go@v5
16+
with:
17+
go-version-file: go.mod
18+
- name: Run unit tests
19+
run: make test

0 commit comments

Comments
 (0)