From d53fc889b8314df0f7cbe963327d6272a4307b9b Mon Sep 17 00:00:00 2001 From: Osamu TONOMORI Date: Fri, 18 Feb 2022 02:24:54 +0900 Subject: [PATCH] Edit gh-actions --- .github/workflows/actions.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 5387f1b..fbf6c69 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-18.04 strategy: matrix: - go: [ '1.16.x' ] + go: [ '1.16.x', '1.17.x' ] steps: - name: Check out code uses: actions/checkout@v2 @@ -38,7 +38,7 @@ jobs: with: go-version: ${{ matrix.go }} - name: Test Go Code - run: go test -short -race -covermode=atomic -coverprofile=coverage.txt ./... + run: go test -race -covermode=atomic -coverprofile=coverage.txt ./... env: KENALL_AUTHORIZATION_TOKEN: ${{ secrets.KENALL_AUTHORIZATION_TOKEN }} - name: Upload coverage to Codecov