Skip to content

Commit

Permalink
ci: Test supported Go versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lithammer committed Jan 25, 2021
1 parent 7f6b38d commit 2833c6f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,17 @@ jobs:
test:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
go-version: ["1.12", "1.13"]
platform:
- macos-latest
- ubuntu-latest
- windows-latest
go-version:
- '1.14'
- '1.15'
runs-on: ${{ matrix.platform }}
steps:
- name: Setup Go
uses: actions/setup-go@v1
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}

Expand Down

0 comments on commit 2833c6f

Please sign in to comment.