Skip to content

Commit

Permalink
Merge pull request #3 from goccy/feature/update-action
Browse files Browse the repository at this point in the history
Enable Go version matrix testing
  • Loading branch information
goccy committed Jul 7, 2020
2 parents c4599aa + ddcd22f commit 19265fc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
go-version:
- '1.12.x'
- '1.13.x'
- '1.14.x'
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go 1.13
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v1
with:
go-version: 1.13
go-version: ${{ matrix.go-version }}
id: go

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

0 comments on commit 19265fc

Please sign in to comment.