From 82976b9bf6bff3a88e0df0bf89bf9dd6759a5c10 Mon Sep 17 00:00:00 2001 From: Peter Date: Mon, 4 Sep 2023 19:09:08 +0800 Subject: [PATCH] Add PHP 8.1 and 8.2 tests in GitHub action --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 097491e..53ce417 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,7 +9,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest, windows-latest] - php: [8.0] + php: [8.0, 8.1, 8.2] stability: [prefer-lowest, prefer-stable] name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}