From c242096f3565540d0bafa5a6d5b32084d28a9c1d Mon Sep 17 00:00:00 2001 From: Justin Hammond Date: Wed, 6 Oct 2021 19:24:16 +0800 Subject: [PATCH] Update Go Versions --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 81daed9..c826606 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: test: strategy: matrix: - go-version: [ 1.16.x ] + go-version: [ 1.17.x, 1.16.x ] platform: [ ubuntu-latest, macos-latest, windows-latest ] runs-on: ${{ matrix.platform }} steps: @@ -23,7 +23,7 @@ jobs: go-version: ${{ matrix.go-version }} - name: Checkout code uses: actions/checkout@v1 - - name: Run tests + - name: Download Go Modules run: go mod download - name: Run tests run: go test -v -race ./... @@ -55,7 +55,7 @@ jobs: if: success() uses: actions/setup-go@v1 with: - go-version: 1.16.x + go-version: 1.17.x - name: Checkout code uses: actions/checkout@v1 - name: Run tests