File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -65,16 +65,16 @@ jobs:
6565 run : ./vendor/bin/phpunit --migrate-configuration
6666
6767 - name : Run unit tests (without code coverage)
68- if : ${{ matrix.php-versions != '7.4' || matrix.dependency-versions != 'highest' }}
68+ if : ${{ matrix.php-versions != '7.4' || matrix.dependency-versions != 'highest' || github.event.repository.fork == true }}
6969 run : ./vendor/bin/phpunit
7070
7171 - name : Run unit tests with code coverage
72- if : ${{ matrix.php-versions == '7.4' && matrix.dependency-versions == 'highest' }}
72+ if : ${{ matrix.php-versions == '7.4' && matrix.dependency-versions == 'highest' && github.event.repository.fork == false }}
7373 run : ./vendor/bin/phpunit --coverage-clover=coverage.xml
7474
7575 - name : Update codecov.io
7676 uses : codecov/codecov-action@v5
77- if : ${{ matrix.php-versions == '7.4' && matrix.dependency-versions == 'highest' }} # upload coverage once is enough
77+ if : ${{ matrix.php-versions == '7.4' && matrix.dependency-versions == 'highest' && github.event.repository.fork == false }} # upload coverage once is enough
7878 env :
7979 CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
8080 with :
You can’t perform that action at this time.
0 commit comments