We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64e611f commit 596ff3fCopy full SHA for 596ff3f
.github/CODEOWNERS
@@ -0,0 +1,5 @@
1
+#
2
+# https://help.github.com/articles/about-codeowners/
3
4
+
5
+* @wechaty/go
.github/workflows/go.yml
@@ -0,0 +1,31 @@
+name: Go
+on:
+ push:
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ name: Test
12
+ runs-on: ubuntu-latest
13
+ steps:
14
15
+ - name: Set up Go 1.14
16
+ uses: actions/setup-go@v1
17
+ with:
18
+ go-version: 1.14
19
+ id: go
20
21
+ - name: Check out code into the Go module directory
22
+ uses: actions/checkout@v2
23
24
+ - name: Get dependencies
25
+ run: go vet ./...
26
27
+ - name: Install dependencies
28
+ run: make install
29
30
+ - name: Go Test
31
+ run: make test
0 commit comments