From b564cab770bd2ef1d157991c27efbb99ae91f435 Mon Sep 17 00:00:00 2001 From: Inhere Date: Mon, 20 Mar 2023 14:24:11 +0800 Subject: [PATCH] ci: will be not support go < 1.17 --- .github/workflows/go.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 050245f..3684c5a 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -19,7 +19,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - go_version: [1.16, 1.17, 1.18, 1.19, '1.20'] + go_version: [1.17, 1.18, 1.19, '1.20'] os: [ubuntu-latest, windows-latest, macOS-latest] steps: @@ -40,8 +40,8 @@ jobs: env: COLOR_DEBUG_MODE: on # run: go test -v -cover ./... - # must add " for profile.cov on windows OS - run: go test -v -coverprofile="profile.cov" ./... + # must add " for profile.cov on Windows OS + run: go test -coverprofile="profile.cov" ./... - name: Send coverage uses: shogo82148/actions-goveralls@v1