Skip to content

Commit

Permalink
Disable coverage for php 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jaapio committed Aug 27, 2024
1 parent a4a4e4c commit 2e39a43
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/runTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@ jobs:
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-

- name: Install dependencies for PHP < 8.0
if: matrix.php-versions != '8.0' && matrix.php-versions != '8.1' && matrix.php-versions != '8.2' && matrix.php-versions != '8.3' && matrix.php-versions != '8.4'
run: composer install --prefer-dist --no-progress

- name: Install PHPUnit 8 for PHP 8
if: matrix.php-versions == '8.0' || matrix.php-versions == '8.1' || matrix.php-versions == '8.2' || matrix.php-versions == '8.3' || matrix.php-versions == '8.4'
- name: Install dependencies
run: |
composer install --prefer-dist --no-progress
- name: Run test suite
if: matrix.php-versions == '7.1'
run: composer run-script test -- --no-coverage

- name: Run test suite
if: matrix.php-versions > '7.1'
run: composer run-script test -- --coverage-text

0 comments on commit 2e39a43

Please sign in to comment.