Skip to content

Commit 438685a

Browse files
committed
Add back 1.14.x testing
1 parent 2a8c440 commit 438685a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@ on: push
44
jobs:
55
build:
66
runs-on: ubuntu-latest
7+
strategy:
8+
matrix:
9+
go: ['1.13.x', '1.14.x']
710
steps:
811
- uses: actions/checkout@master
912
- uses: actions/setup-go@v1
1013
with:
11-
go-version: '1.13.x' # The Go version to download (if necessary) and use.
14+
go-version: ${{ matrix.go }} # The Go version to download (if necessary) and use.
1215
- run: make deps build test

0 commit comments

Comments
 (0)