Skip to content

Commit bb16444

Browse files
devsteinMario Hros
authored andcommitted
Add CI for tests
1 parent 159bea4 commit bb16444

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Run Tests
2+
3+
on:
4+
- push
5+
6+
jobs:
7+
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
13+
- name: Set up Go
14+
uses: actions/setup-go@v3
15+
with:
16+
go-version: 1.19
17+
18+
- name: Test
19+
run: go test -v .

0 commit comments

Comments
 (0)