Skip to content

Commit

Permalink
Disable code coverage job for PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
scheb committed Nov 10, 2024
1 parent 79ff0d6 commit 2b872fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ jobs:
code-coverage:
name: 'Code Coverage - PHP ${{ matrix.php-version }}'
runs-on: 'ubuntu-latest'
# We want to run on external PRs, but not on our own internal PRs as they'll be run by the push to the branch.
if: ${{ !(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) }}
# Do not run on PRs, because Codecov upload for PRs is failing
if: ${{ github.event_name != 'pull_request' }}

strategy:
fail-fast: false
Expand Down

0 comments on commit 2b872fd

Please sign in to comment.