From 863cd0dada5a6e433d426d3be7a782688dc5a6e6 Mon Sep 17 00:00:00 2001 From: Gemorroj Date: Fri, 24 Nov 2023 20:18:51 +0300 Subject: [PATCH] build: add php 8.3 to github actions --- .github/workflows/ci.yml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d18b78a..060eee2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,13 +37,22 @@ 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.3; latest-deps' + + - operating-system: 'ubuntu-latest' + php-version: '8.3' + composer-flags: '--prefer-lowest' + job-description: 'Ubuntu; PHP 8.3; lowest-deps' + - operating-system: 'windows-latest' - php-version: '8.2' - job-description: 'Windows; PHP 8.2; latest-deps' + php-version: '8.3' + job-description: 'Windows; PHP 8.3; latest-deps' - operating-system: 'macos-latest' - php-version: '8.2' - job-description: 'MacOS; PHP 8.2; latest-deps' + php-version: '8.3' + job-description: 'MacOS; PHP 8.3; latest-deps' name: ${{ matrix.job-description }}