From 5c6244f3a77b0046842426864d82f25773d9f146 Mon Sep 17 00:00:00 2001 From: Antonio Pagano Date: Wed, 3 Nov 2021 07:17:29 -0500 Subject: [PATCH] task: Updating the repo Changing the github instructions to run tests on Go 1.16 and 1.17 --- .github/workflows/tests.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9eff1e1..2ea3333 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,7 +2,7 @@ name: Tests on: push: branches: - - master + - main pull_request: jobs: @@ -11,16 +11,15 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - go-version: [1.14.x, 1.15.x] + go-version: [1.16.x, 1.17.x] os: [macos-latest, windows-latest, ubuntu-latest] steps: - name: Checkout Code - uses: actions/checkout@v1 + uses: actions/checkout@v2 with: fetch-depth: 1 - name: Test run: | - go mod tidy -v go test -race ./...