We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b2a15c commit 781b6afCopy full SHA for 781b6af
.github/workflows/test.yml
@@ -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
@@ -0,0 +1,2 @@
+test:
+ go test ./...
0 commit comments