diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6c23c75..82ddb1e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,14 +27,10 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: ['7.2', '7.3', '7.4'] + php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4'] coverage: [true] composer-flags: [''] include: - - php: '8.0' - coverage: false - - php: '8.4' - coverage: false - php: '7.2' coverage: false composer-flags: '--prefer-lowest' @@ -55,7 +51,7 @@ jobs: - name: "Use PHPUnit 9.3+ on PHP 8" run: composer require --no-update --dev phpunit/phpunit:^9.3 - if: "matrix.php == '8.0' || matrix.php == '8.4'" + if: "matrix.php == '8.0' || matrix.php == '8.1' || matrix.php == '8.2' || matrix.php == '8.3' || matrix.php == '8.4'" - run: composer update --no-progress ${{ matrix.composer-flags }}