From 4271f208db12f564c0fb2a5518e08c68635377b4 Mon Sep 17 00:00:00 2001 From: Koichi Shiraishi Date: Wed, 7 Oct 2020 01:53:58 +0900 Subject: [PATCH] github/workflows: add 1.14 and 1.15 --- .github/workflows/go.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 8ed9981..c2d32cc 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -5,13 +5,14 @@ jobs: name: Test strategy: 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 }} steps: - - name: Set up Go 1.13 + - name: Set up Go ${{ matrix.go-version }} uses: actions/setup-go@v2 with: - go-version: 1.13 + go-version: ${{ matrix.go-version }} id: go - name: Check out code into the Go module directory