From 59bec5a7da1a112a52bac5e44526dec9c82b08bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Omer=20=C5=A0abi=C4=87?= Date: Sat, 2 Dec 2023 13:21:28 +0100 Subject: [PATCH] ci(tests): add PHP 8.2 to workflow --- .github/workflows/test-runner.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-runner.yml b/.github/workflows/test-runner.yml index 6698d44..1e884cc 100644 --- a/.github/workflows/test-runner.yml +++ b/.github/workflows/test-runner.yml @@ -30,7 +30,7 @@ jobs: fail-fast: true matrix: os: [ ubuntu-latest ] - php: [ 7.4, 8.0, 8.1 ] + php: [ 7.4, 8.0, 8.1, 8.2 ] name: ${{ matrix.os }} / PHP ${{ matrix.php }} @@ -72,7 +72,7 @@ jobs: - name: Upload coverage reports to Codecov # Make sure the Codecov action is only executed once - if: matrix.os == 'ubuntu-latest' && matrix.php == '8.1' + if: matrix.os == 'ubuntu-latest' && matrix.php == '8.2' uses: codecov/codecov-action@v3 with: files: ./coverage.xml