We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8af989b commit 7a01b54Copy full SHA for 7a01b54
.github/workflows/go.yml
@@ -0,0 +1,35 @@
1
+name: Go
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+env:
10
+ shell: 'sh -x'
11
12
+jobs:
13
+ build:
14
+ runs-on: ubuntu-latest
15
+ strategy:
16
+ fail-fast: false # report all go versions separately
17
+ matrix:
18
+ go-version:
19
+ - "1.12"
20
+ - "1.13"
21
+ - "1.14"
22
+ - "1.15"
23
+ - "1.16"
24
+ - "1.17"
25
+ steps:
26
+ - uses: actions/checkout@v3
27
28
+ - name: Set up Go
29
+ uses: actions/setup-go@v3
30
+ with:
31
+ go-version: ${{matrix.go-version}}
32
33
+ - name: Build
34
+ run: make test
35
.travis.yml
0 commit comments