From ac6d4440fd8a5e40ae817c1ad137933424933356 Mon Sep 17 00:00:00 2001 From: Gemorroj Date: Fri, 24 Nov 2023 20:06:37 +0300 Subject: [PATCH] build: add php 8.3 to github actions --- .github/workflows/ci.yml | 13 +++++++++++-- composer.json | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b17b57e..9223af3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,12 +37,21 @@ jobs: composer-flags: '--prefer-lowest' job-description: 'Ubuntu; PHP 8.2; lowest-deps' + - operating-system: 'ubuntu-latest' + php-version: '8.3' + job-description: 'Ubuntu; PHP 8.2; latest-deps' + + - operating-system: 'ubuntu-latest' + php-version: '8.3' + composer-flags: '--prefer-lowest' + job-description: 'Ubuntu; PHP 8.2; lowest-deps' + - operating-system: 'windows-latest' - php-version: '8.2' + php-version: '8.3' job-description: 'Windows; PHP 8.2; latest-deps' - operating-system: 'macos-latest' - php-version: '8.2' + php-version: '8.3' job-description: 'MacOS; PHP 8.2; latest-deps' name: ${{ matrix.job-description }} diff --git a/composer.json b/composer.json index b649bc3..5f12bd5 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "symfony/process": "^5.4||^6.0" }, "require-dev": { - "phpunit/phpunit": "^9.5.28", + "phpunit/phpunit": "^9.6", "friendsofphp/php-cs-fixer": "^3.0", "phpstan/phpstan": "^1.0" },