From 77fc5bc0ed8b66f448df27701d005b6bdfbd1182 Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Thu, 6 Aug 2026 11:43:41 +0200 Subject: [PATCH] End-to-End tests: Support different php versions per case --- .github/workflows/e2e-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index df2ca12db6..f192073f09 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -531,6 +531,7 @@ jobs: strategy: fail-fast: false matrix: + php-version: ["8.2"] include: - script: "bin/phpstan analyse -l 8 -a tests/e2e/data/timecop.php -c tests/e2e/data/empty.neon tests/e2e/data/timecop.php" tools: "pecl" @@ -616,6 +617,7 @@ jobs: - script: | cd e2e/bug13425 timeout 15 ../bashunit -a exit_code "1" "../../bin/phpstan analyze src/ plugins/" + php-version: "8.3" - script: | cd e2e/bug-14036 composer install @@ -660,7 +662,7 @@ jobs: uses: "shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240" # 2.37.2 with: coverage: "none" - php-version: "8.2" + php-version: ${{ matrix.php-version }} tools: ${{ matrix.tools }} extensions: ${{ matrix.extensions }}