From 2b65b9b134587376097121c5d259be08b00d1076 Mon Sep 17 00:00:00 2001 From: Scott McGowan Date: Fri, 21 Jan 2022 22:33:12 +0000 Subject: [PATCH] chore: only run lint and test on latest do not run test and lint on 1.16, only on 1.17 will add to this as newer version come out but no reason to support older versions it was not developed for --- .github/workflows/lint.yaml | 2 +- .github/workflows/test.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 34741a3..a1ab746 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -18,7 +18,7 @@ jobs: lint: strategy: matrix: - go-version: [1.16.x, 1.17.x] + go-version: [1.17.x] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 3b37ab5..58d08d0 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -18,7 +18,7 @@ jobs: test: strategy: matrix: - go-version: [1.16.x, 1.17.x] + go-version: [1.17.x] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: