diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 25241c2..a4deb09 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -23,9 +23,7 @@ jobs: - name: Run tests with coverage run: | go test -v -race -covermode atomic -coverprofile=covprofile ./... - - name: Install goveralls - run: go install github.com/mattn/goveralls@latest - - name: Send coverage - env: - COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: goveralls -coverprofile=covprofile -service=github + - name: Coveralls + uses: coverallsapp/github-action@v2 + with: + file: covprofile