Skip to content

Commit

Permalink
Add PHP 8.3 to CI (#1207)
Browse files Browse the repository at this point in the history
  • Loading branch information
ruudk authored Dec 21, 2023
1 parent 6fd365b commit 24cb742
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/component.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: ['8.0', '8.1', '8.2']
php-version: ['8.0', '8.1', '8.2', '8.3']
component: [Common, Http, Plugin]

name: PHP ${{ matrix.php-version }} / ${{ matrix.component }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: ['8.0', '8.1', '8.2']
php-version: ['8.0', '8.1', '8.2', '8.3']
deps: ['low', 'high']
name: PHP ${{ matrix.php-version }} (${{ matrix.deps }})
steps:
Expand Down Expand Up @@ -41,10 +41,10 @@ jobs:
name: PHPStan
steps:
- uses: actions/checkout@v4
- name: Use PHP 8.2
- name: Use PHP 8.3
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
php-version: 8.3
extensions: curl
- name: Install dependencies
run: composer install --no-progress
Expand All @@ -56,12 +56,12 @@ jobs:
name: PHP CS Fixer
steps:
- uses: actions/checkout@v4
- name: Use PHP 8.2
- name: Use PHP 8.3
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
php-version: 8.3
extensions: curl
- name: Install dependencies
run: composer install --no-progress
- name: Run PHPStan
run: composer run-script cs
run: composer run-script cs
2 changes: 1 addition & 1 deletion .github/workflows/provider.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: ['8.0', '8.1', '8.2']
php-version: ['8.0', '8.1', '8.2', '8.3']
provider:
- AlgoliaPlaces
- ArcGISOnline
Expand Down

0 comments on commit 24cb742

Please sign in to comment.