From 6a74da49a3f2b475e43fff3d624665e75af0aa8a Mon Sep 17 00:00:00 2001 From: Florian Weiss Date: Thu, 6 Jul 2023 13:53:06 +0200 Subject: [PATCH] [TASK] match PHP version for CI --- .github/workflows/ci.yaml | 11 ++++++----- tests/Unit/Verification/LinkTest.php | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 85c3f8c..1b467e9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,7 +9,7 @@ jobs: - name: Install PHP uses: shivammathur/setup-php@v2 with: - php-version: 7.4 + php-version: 8.2 - name: Validate composer.json run: composer validate @@ -19,9 +19,10 @@ jobs: strategy: matrix: php-version: - - 7.2 - - 7.3 - 7.4 + - 8.0 + - 8.1 + - 8.2 steps: - name: Checkout uses: actions/checkout@v2 @@ -42,7 +43,7 @@ jobs: - name: Install PHP uses: shivammathur/setup-php@v2 with: - php-version: 7.4 + php-version: 8.2 - name: Get Composer Cache Directory id: composer-cache @@ -70,7 +71,7 @@ jobs: - name: Install PHP uses: shivammathur/setup-php@v2 with: - php-version: 7.4 + php-version: 8.2 - name: Get Composer Cache Directory id: composer-cache diff --git a/tests/Unit/Verification/LinkTest.php b/tests/Unit/Verification/LinkTest.php index 68f2dba..34de294 100644 --- a/tests/Unit/Verification/LinkTest.php +++ b/tests/Unit/Verification/LinkTest.php @@ -166,7 +166,7 @@ class LinkTest extends TestCase $subject->getVerificationLink('self', null, Link::SKILL_SET) ); } - + /** * @test */