diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 210c479..8808e33 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -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 }}