From b36be6238352944765d4b60b6d9214a9364d5371 Mon Sep 17 00:00:00 2001 From: chris Date: Mon, 27 Oct 2025 14:29:43 +0100 Subject: [PATCH 1/5] ci: add tests for PHP 8.5 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fe27b4f5..0c90c1b0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: ['8.1', '8.2', '8.3', '8.4'] + php-versions: ['8.1', '8.2', '8.3', '8.4', '8.5'] name: PHPUnit @ PHP ${{ matrix.php-versions }} steps: From b9d61fa9acfeef7d8b93debf157e93793e6cd7d0 Mon Sep 17 00:00:00 2001 From: chris Date: Mon, 10 Nov 2025 09:04:40 +0100 Subject: [PATCH 2/5] Update checkout action to version 5 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0c90c1b0..8c742e6c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ jobs: name: PHPUnit @ PHP ${{ matrix.php-versions }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: php-actions/composer@v6 - uses: php-actions/phpunit@master with: From f61a34f660c0d6fa0a04944e02d5840d08287555 Mon Sep 17 00:00:00 2001 From: chris Date: Sat, 22 Nov 2025 13:49:29 +0100 Subject: [PATCH 3/5] Update checkout action version in build workflow --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8c742e6c..70bdc3be 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ jobs: name: PHPUnit @ PHP ${{ matrix.php-versions }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: php-actions/composer@v6 - uses: php-actions/phpunit@master with: From 186f95bd6e42f45d9b7e19f34f888ef55352e5c9 Mon Sep 17 00:00:00 2001 From: chris Date: Tue, 2 Dec 2025 11:03:43 +0100 Subject: [PATCH 4/5] Update build.yml --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 70bdc3be..154c7aad 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: bootstrap: vendor/autoload.php configuration: phpunit.xml args: --coverage-text - php_extensions: xdebug bcmath + php_extensions: xdebug php_version: ${{ matrix.php-versions }} version: 9 env: From 95c30419689fd18c22b8fa6025c66b07304cf48f Mon Sep 17 00:00:00 2001 From: chris Date: Tue, 2 Dec 2025 11:05:22 +0100 Subject: [PATCH 5/5] Update build.yml --- .github/workflows/build.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 154c7aad..960ed27d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,8 +17,5 @@ jobs: bootstrap: vendor/autoload.php configuration: phpunit.xml args: --coverage-text - php_extensions: xdebug php_version: ${{ matrix.php-versions }} version: 9 - env: - XDEBUG_MODE: coverage