Skip to content

Commit f26b630

Browse files
author
Mike Heffner
authored
Merge pull request #134 from netlify/go-1.14x
Add back 1.14.x testing
2 parents 2a8c440 + 438685a commit f26b630

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)