We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52ae641 commit 4f5f962Copy full SHA for 4f5f962
1 file changed
.github/workflows/go.yml
@@ -0,0 +1,28 @@
1
+name: Go
2
+
3
+on:
4
+ push:
5
+ branches: [ master, upd_ci ]
6
+ pull_request:
7
+ branches: [ master ]
8
9
+jobs:
10
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ matrix:
15
+ go: [ '1.17', '1.16', '1.15' ]
16
+ steps:
17
+ - uses: actions/checkout@v2
18
19
+ - name: Set up Go ${{ matrix.go }}
20
+ uses: actions/setup-go@v2
21
+ with:
22
+ go-version: ${{ matrix.go }}
23
24
+ - name: Install golint
25
+ run: go get golang.org/x/lint/golint
26
27
+ - name: Build and Run tests
28
+ run: make
0 commit comments