diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 658d21e..264777f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,6 @@ on: [push, pull_request] -name: run tests +name: Run Tests jobs: test: runs-on: ubuntu-latest @@ -14,11 +14,11 @@ jobs: - name: Run tests with coverage run: | go test -v -covermode=count -coverprofile=coverage.out - - name: Convert coverage.out to coverage.lcov - uses: jandelgado/gcov2lcov-action@v1.0.6 + # - name: Convert coverage.out to coverage.lcov + # uses: jandelgado/gcov2lcov-action@v1.0.6 - name: Coveralls - uses: coverallsapp/github-action@v1.1.2 + uses: coverallsapp/github-action@v2.3.0 with: github-token: ${{ secrets.github_token }} - path-to-lcov: coverage.lcov - \ No newline at end of file + file: coverage.out + format: golang \ No newline at end of file