diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 1c766d1..9c219da 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -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