From efc4c032c5e3c925b8c8bf6bb97619e6ac0e9658 Mon Sep 17 00:00:00 2001 From: Ben Sherred Date: Fri, 11 Apr 2025 10:29:36 +0100 Subject: [PATCH 1/5] ci: fix tests workflow --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cb937aa..2bf190b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,9 +17,9 @@ jobs: matrix: php: [ 8.2, 8.3, 8.4 ] laravel: [ 10, 11, 12 ] - exclude: - - php: 8.4 - laravel: 12 +# exclude: +# - php: 8.4 +# laravel: 12 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} From 73ea6cb1fa17f02f89c72d9770c136eb0d42cf6c Mon Sep 17 00:00:00 2001 From: Ben Sherred Date: Fri, 11 Apr 2025 10:31:11 +0100 Subject: [PATCH 2/5] ci: updates tests exclude list --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2bf190b..130d830 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,9 +17,9 @@ jobs: matrix: php: [ 8.2, 8.3, 8.4 ] laravel: [ 10, 11, 12 ] -# exclude: -# - php: 8.4 -# laravel: 12 + exclude: + - php: 8.4 + laravel: 10 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} From 74ea02dff07dfbbdc2eb3231110f509b5ba472b8 Mon Sep 17 00:00:00 2001 From: Ben Sherred Date: Fri, 11 Apr 2025 10:36:51 +0100 Subject: [PATCH 3/5] chore: update pest versions --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 9a5d5c6..991718f 100644 --- a/composer.json +++ b/composer.json @@ -25,8 +25,8 @@ "require-dev": { "laravel/pint": "^1.10", "orchestra/testbench": "^8.0|^9.0|^10.0", - "pestphp/pest": "^3.0", - "pestphp/pest-plugin-arch": "^3.0", + "pestphp/pest": "^2.0|^3.0", + "pestphp/pest-plugin-arch": "^2.0|^3.0", "phpstan/phpstan": "^1.10", "red-explosion/pint-config": "^1.1", "spatie/laravel-ray": "^1.32" From 8116e7d6a8f995c882e6c2726a57c0ff2cc7aabf Mon Sep 17 00:00:00 2001 From: Ben Sherred Date: Fri, 11 Apr 2025 10:38:02 +0100 Subject: [PATCH 4/5] ci: comment exclude --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 130d830..eef9822 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,9 +17,9 @@ jobs: matrix: php: [ 8.2, 8.3, 8.4 ] laravel: [ 10, 11, 12 ] - exclude: - - php: 8.4 - laravel: 10 +# exclude: +# - php: 8.4 +# laravel: 10 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} From e5a0cfae98219afd328310e0e9e3b4bf57029ee7 Mon Sep 17 00:00:00 2001 From: Ben Sherred Date: Fri, 11 Apr 2025 10:39:07 +0100 Subject: [PATCH 5/5] ci: remove exclude from tests workflow --- .github/workflows/tests.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index eef9822..c653585 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,9 +17,6 @@ jobs: matrix: php: [ 8.2, 8.3, 8.4 ] laravel: [ 10, 11, 12 ] -# exclude: -# - php: 8.4 -# laravel: 10 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}