From 8a7e980e75ec60fa6db6173c8d9c27bdf47cf84d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 7 Feb 2025 11:37:25 +0100 Subject: [PATCH] Fix: Run end-to-end and phar tests with phpunit/phpunit:8.5.40 --- .github/workflows/integrate.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index da7b527f..34059074 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -756,6 +756,10 @@ jobs: if: "matrix.phpunit-version == '8.5.19'" run: "vendor/bin/phpunit --colors=always --configuration=test/EndToEnd/Version08/phpunit.xml" + - name: "Run end-to-end tests with phpunit/phpunit:8.5.40" + if: "matrix.phpunit-version == '8.5.40'" + run: "vendor/bin/phpunit --colors=always --configuration=test/EndToEnd/Version08/phpunit.xml" + - name: "Run end-to-end tests with phpunit/phpunit:9.0.0" if: "matrix.phpunit-version == '9.0.0'" run: "vendor/bin/phpunit --colors=always --configuration=test/EndToEnd/Version09/phpunit.xml" @@ -790,6 +794,10 @@ jobs: if: "matrix.phpunit-version == '8.5.19'" run: "vendor/bin/phpunit --colors=always --configuration=test/Phar/Version08/phpunit.xml" + - name: "Run phar tests with phpunit/phpunit:8.5.40" + if: "matrix.phpunit-version == '8.5.40'" + run: "vendor/bin/phpunit --colors=always --configuration=test/Phar/Version08/phpunit.xml" + - name: "Run phar tests with phpunit/phpunit:9.0.0" if: "matrix.phpunit-version == '9.0.0'" run: "vendor/bin/phpunit --colors=always --configuration=test/Phar/Version09/phpunit.xml"