From 9a1f58e23f9a4ff30fb2677344a9b4f6aef33a72 Mon Sep 17 00:00:00 2001 From: Andrea Giannantonio Date: Wed, 4 Oct 2023 14:53:45 +0200 Subject: [PATCH] chore: add workflows pipeline for php 8.2 --- .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 f335dd3..c1d310a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,13 +10,13 @@ jobs: strategy: matrix: - php: ['8.0', '8.1'] + php: ['8.0', '8.1', '8.2'] name: PHP ${{ matrix.php }} steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 @@ -37,4 +37,4 @@ jobs: run: vendor/bin/phpunit -c phpunit.xml.dist --coverage-clover clover.xml - name: Upload coverage to Codecov - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v3