diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 7c8dd57..020f3b6 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -27,20 +27,6 @@ jobs: - name: checkout uses: actions/checkout@v3 - name: test - run: go test -coverprofile coverage.out -covermode atomic ./... + run: go test -race -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