From e29dbded963c3465370ea6dbf79f47c239db6341 Mon Sep 17 00:00:00 2001 From: Phil Bennett Date: Sun, 10 Nov 2024 12:28:02 +0000 Subject: [PATCH] Add extra versions to action pipeline --- .github/workflows/test.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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 }}