github/workflows: add 1.14 and 1.15

This commit is contained in:
Koichi Shiraishi 2020-10-07 01:53:58 +09:00
parent 09cf542962
commit 4271f208db
No known key found for this signature in database
GPG Key ID: A71DFD3B4DA7A79B
1 changed files with 4 additions and 3 deletions

View File

@ -5,13 +5,14 @@ jobs:
name: Test name: Test
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, windows-latest, macos-latest] os: [ "ubuntu-latest", "windows-latest", "macos-latest" ]
go-version: [ "1.13", "1.14", "1.15" ]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- name: Set up Go 1.13 - name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v2 uses: actions/setup-go@v2
with: with:
go-version: 1.13 go-version: ${{ matrix.go-version }}
id: go id: go
- name: Check out code into the Go module directory - name: Check out code into the Go module directory