From 43629b793b4a7d9ed6dec8a51889da369eee57f7 Mon Sep 17 00:00:00 2001 From: PokIsemaine <851892190@qq.com> Date: Wed, 27 Sep 2023 18:44:26 +0800 Subject: [PATCH] fix: CI goveralls --- .github/workflows/default.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index ea93c51..1b8f65f 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -12,7 +12,7 @@ jobs: with: go-version: '1.19' - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install dependencies run: | go mod download @@ -20,7 +20,7 @@ jobs: run: | go test -race -covermode atomic -coverprofile=covprofile ./... - name: Install goveralls - run: go get github.com/mattn/goveralls@latest + run: go install github.com/mattn/goveralls@latest - name: Send coverage env: COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}