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 3856c05 commit 13df721Copy full SHA for 13df721
.github/workflows/ci.yml
@@ -12,23 +12,23 @@ jobs:
12
runs-on: ubuntu-latest
13
strategy:
14
matrix:
15
- go: ['1.11', '1.12', '1.13']
+ go: ['1.11', '1.12', '1.13', '1.14']
16
env:
17
VERBOSE: 1
18
GOFLAGS: -mod=readonly
19
GOPROXY: https://proxy.golang.org
20
21
steps:
22
- name: Set up Go
23
- uses: actions/setup-go@v1
+ uses: actions/setup-go@v2
24
with:
25
go-version: ${{ matrix.go }}
26
27
- name: Checkout code
28
uses: actions/checkout@v2
29
30
- - name: Run tests
31
- run: make test
32
-
33
- - name: Run linter
+ - name: Lint
34
run: make lint
+
+ - name: Test
+ run: make test
0 commit comments