diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index d3ad8c79..28ef3ff2 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -87,7 +87,8 @@ jobs: run: make frontend - name: Generate coverage file - if: (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') + if: github.event_name == 'pull_request' + #if: (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') uses: actions-rs/tarpaulin@v0.1 with: args: "-t 1200" @@ -101,5 +102,5 @@ jobs: COMPILED_DATE: "2021-07-21" - name: Upload to Codecov - if: (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') + if: github.event_name == 'pull_request' uses: codecov/codecov-action@v2