From 579e844fe8c3e1ebf8db1961ea89a784eea6e593 Mon Sep 17 00:00:00 2001 From: Songmu Date: Wed, 22 Feb 2023 21:32:40 +0900 Subject: [PATCH] introduce codecov --- .github/workflows/test.yaml | 17 +---------------- codecov.yml | 2 ++ 2 files changed, 3 insertions(+), 16 deletions(-) create mode 100644 codecov.yml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 8199ede..3633a4e 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -28,19 +28,4 @@ jobs: - name: test run: go test -coverprofile coverage.out -covermode atomic ./... - name: Send coverage - uses: shogo82148/actions-goveralls@v1 - with: - github-token: ${{ secrets.github_token }} - path-to-profile: coverage.out - parallel: true - job-number: ${{ strategy.job-index }} - - finish: - runs-on: ubuntu-latest - needs: test - steps: - - name: finish coverage report - uses: shogo82148/actions-goveralls@v1 - with: - github-token: ${{ secrets.github_token }} - parallel-finished: true + uses: codecov/codecov-action@v1 diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 0000000..cd96b59 --- /dev/null +++ b/codecov.yml @@ -0,0 +1,2 @@ +comment: false +github_checks: false