diff --git a/.github/workflows/pr_test.yml b/.github/workflows/pr_test.yml index a5caffe..8a73b0a 100644 --- a/.github/workflows/pr_test.yml +++ b/.github/workflows/pr_test.yml @@ -26,27 +26,4 @@ jobs: run: go vet ./... - name: go test - run: go test -v -covermode=count -coverprofile=coverage.out - - - name: Convert coverage to lcov - uses: jandelgado/gcov2lcov-action@v1.0.8 - with: - infile: coverage.out - outfile: coverage.lcov - - name: Coveralls Parallel - uses: coverallsapp/github-action@v1.1.2 - with: - github-token: ${{ secrets.github_token }} - path-to-lcov: coverage.lcov - flag-name: go-version-${{ matrix.go }} - parallel: true - - finish: - needs: test - runs-on: ubuntu-latest - steps: - - name: Coveralls Finished - uses: coverallsapp/github-action@v1.1.2 - with: - github-token: ${{ secrets.github_token }} - parallel-finished: true + run: go test -v diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e0ee4c0..99322e3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,9 @@ name: test on: push: + branches: + - '*' + - '!renovate/**' jobs: test: