From 29159e93a84f123a6dc5812f8a610ad06c479296 Mon Sep 17 00:00:00 2001 From: Piotr Synowiec Date: Thu, 28 Dec 2023 11:57:15 +0100 Subject: [PATCH] github actions: php 8.2 (#36) * action-php-8.2: update * action-php-8.2: bcmath * action-php-8.2: update bcmath --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 53d1347..6adf51e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,12 +14,13 @@ jobs: runs-on: self-hosted strategy: matrix: - php: [ '7.2', '7.3', '7.4', '8.0', '8.1' ] + php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ] steps: - name: Setup PHP (PHP ${{ matrix.php }}) uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} + extensions: bcmath coverage: xdebug tools: composer