Skip to content

Commit

Permalink
feat(ci): add test matrix for golang versions (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
shakefu committed May 19, 2021
1 parent 413781f commit 85d372a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/go.yml
Expand Up @@ -11,12 +11,15 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
golang: [1.14, 1.16]
steps:

- name: Set up Go 1.14
- name: Set up Go ${{ matrix.golang }}
uses: actions/setup-go@v1
with:
go-version: 1.14
go-version: ${{ matrix.golang }}
id: go

- name: Check out code into the Go module directory
Expand Down

0 comments on commit 85d372a

Please sign in to comment.