From 7610e79f4d42268ba501c5a2e4d7316eab9895dd Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Wed, 31 Jul 2024 21:14:42 -0700 Subject: [PATCH] .github/workflows/ci.yml - Add php84 to test matrix. Bump GH action version. --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 86f4af6..5d90a56 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,12 +12,14 @@ jobs: strategy: matrix: include: - - php: 7.2 - phpunit: 7 + - php: 7.3 + phpunit: 8 - php: 7.4 phpunit: 8 - php: 8.2 phpunit: 8 + - php: 8.4 + phpunit: 9 steps: - uses: actions/checkout@v2 @@ -25,7 +27,7 @@ jobs: with: php_extensions: pcntl - name: PHPUnit Tests - uses: php-actions/phpunit@v3 + uses: php-actions/phpunit@master with: configuration: phpunit.xml.dist version: ${{ matrix.phpunit }}