From e9743f0cb0e96e9b4b434141e890a0fa16ce3f18 Mon Sep 17 00:00:00 2001 From: sentriz Date: Sat, 8 May 2021 18:08:07 +0100 Subject: [PATCH] fix(ci): only test on go1.16 --- .github/workflows/go.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 0afd7a7..a53d148 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -7,16 +7,12 @@ on: pull_request: jobs: test: - strategy: - matrix: - go-version: [1.13.x, 1.14.x, 1.15.x] - platform: [ubuntu-latest] - runs-on: ${{ matrix.platform }} + runs-on: ubuntu-latest steps: - - name: Setup Go ${{ matrix.go-version }} + - name: Setup Go uses: actions/setup-go@v1 with: - go-version: ${{ matrix.go-version }} + go-version: 1.16.x - name: Checkout code into the Go module directory uses: actions/checkout@v1 - name: Install dependencies