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.
2 parents 2a8c440 + 438685a commit f26b630Copy full SHA for f26b630
.github/workflows/build.yml
@@ -4,9 +4,12 @@ on: push
4
jobs:
5
build:
6
runs-on: ubuntu-latest
7
+ strategy:
8
+ matrix:
9
+ go: ['1.13.x', '1.14.x']
10
steps:
11
- uses: actions/checkout@master
12
- uses: actions/setup-go@v1
13
with:
- 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.
15
- run: make deps build test
0 commit comments