From c6344bb13de3128816e922fad022f303048ba957 Mon Sep 17 00:00:00 2001 From: nagyad Date: Thu, 15 Feb 2024 17:01:03 +0100 Subject: [PATCH] EWPP-4100: Add php8.2 to matrix. --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9dc7d1fb..f58e9f56 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php_version: ["8.1"] + php_version: ["8.1", "8.2"] composer_command: ["composer install", "composer update --prefer-lowest"] env: PHP_VERSION: ${{ matrix.php_version }} @@ -19,8 +19,11 @@ jobs: run: docker-compose exec -T php ./vendor/bin/phpunit code-sniffer: runs-on: ubuntu-latest + strategy: + matrix: + php_version: ["8.1", "8.2"] env: - PHP_VERSION: "8.1" + PHP_VERSION: ${{ matrix.php_version }} steps: - name: clone uses: actions/checkout@v2