Skip to content

Commit 781b6af

Browse files
Add CI test
1 parent 5b2a15c commit 781b6af

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.github/workflows/test.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Test
2+
on:
3+
push:
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
name: Test
9+
steps:
10+
- uses: actions/checkout@v2
11+
12+
- name: Install Go
13+
uses: actions/setup-go@v2
14+
with:
15+
go-version: 1.17
16+
17+
- name: Test
18+
run: make test

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
test:
2+
go test ./...

0 commit comments

Comments
 (0)