From 96b71c8822adb542cff5ff9f8585b4a2ad01b6e7 Mon Sep 17 00:00:00 2001 From: James Read Date: Wed, 1 Apr 2026 21:25:43 +0100 Subject: [PATCH] chore: attempting to fix CI/CD --- .github/workflows/tests.yml | 8 ++++---- tests/RequestPathRuleTest.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 67727b7..7f9f8f3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,8 +6,8 @@ jobs: fail-fast: false matrix: operating-system: [ubuntu-latest] - php-versions: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"] - dependency-versions: ["highest", "lowest"] + php: ["8.0", "8.1", "8.2", "8.3", "8.4", "8.5"] + dependencies: ["highest"] runs-on: ${{ matrix.operating-system }} steps: @@ -17,14 +17,14 @@ jobs: - name: Setup PHP and extensions uses: shivammathur/setup-php@v2 with: - php-version: ${{ matrix.php-versions }} + php-version: ${{ matrix.php }} extensions: gmp coverage: xdebug - name: Install and cache Composer dependencies uses: ramsey/composer-install@v4 with: - dependency-versions: ${{ matrix.dependency-versions }} + dependency-versions: ${{ matrix.dependencies }} - name: Run linter run: make lint diff --git a/tests/RequestPathRuleTest.php b/tests/RequestPathRuleTest.php index 67fb6bd..3244e9b 100644 --- a/tests/RequestPathRuleTest.php +++ b/tests/RequestPathRuleTest.php @@ -37,7 +37,7 @@ use Laminas\Diactoros\Uri; use PHPUnit\Framework\TestCase; -class RequestPathTest extends TestCase +class RequestPathRuleTest extends TestCase { public function testShouldAcceptArrayAndStringAsPath() {