Skip to content

Commit ab4258c

Browse files
committed
NVHSAS-6217: Add unitest actiion
1 parent 83b2517 commit ab4258c

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/unitest.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Run unitest on push and pull request
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
unitest:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-go@v2
13+
with:
14+
go-version: '1.20.3'
15+
- run: |
16+
./unitest.sh

0 commit comments

Comments
 (0)