Skip to content

Commit 13df721

Browse files
committed
Add Go 1.14 to build targets
1 parent 3856c05 commit 13df721

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
go: ['1.11', '1.12', '1.13']
15+
go: ['1.11', '1.12', '1.13', '1.14']
1616
env:
1717
VERBOSE: 1
1818
GOFLAGS: -mod=readonly
1919
GOPROXY: https://proxy.golang.org
2020

2121
steps:
2222
- name: Set up Go
23-
uses: actions/setup-go@v1
23+
uses: actions/setup-go@v2
2424
with:
2525
go-version: ${{ matrix.go }}
2626

2727
- name: Checkout code
2828
uses: actions/checkout@v2
2929

30-
- name: Run tests
31-
run: make test
32-
33-
- name: Run linter
30+
- name: Lint
3431
run: make lint
32+
33+
- name: Test
34+
run: make test

0 commit comments

Comments
 (0)