Skip to content

Commit

Permalink
ci: Add PHP 8.3 to the matrix (#941)
Browse files Browse the repository at this point in the history
  • Loading branch information
theofidry committed Jan 19, 2024
2 parents ebe236c + d348097 commit d4df72a
Show file tree
Hide file tree
Showing 6 changed files with 877 additions and 598 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/composer-root-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '8.2' ]
php: [ '8.3' ]

steps:
- name: Checkout
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
php-version: '8.3'
tools: composer
coverage: none

Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
matrix:
php:
- '8.2'
- '8.3'
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -88,6 +89,7 @@ jobs:
- 'e2e_037'
php:
- '8.2'
- '8.3'
composer:
- 'composer:2.2'
- 'composer'
Expand Down Expand Up @@ -138,7 +140,7 @@ jobs:
run: sudo apt-get install -y tree

- name: Run e2e ${{ matrix.e2e }}
run: make ${{ matrix.e2e }} --debug
run: make ${{ matrix.e2e }}


# Most of the job definitions come from https://github.com/sebastianbergmann/phpunit/blob/main/.github/workflows/ci.yml#L228
Expand All @@ -155,7 +157,7 @@ jobs:
fail-fast: false
matrix:
php-version:
- '8.2'
- '8.3'
coverage:
- xdebug

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
php-version: '8.3'
tools: composer
coverage: none

Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
php-version: '8.3'
tools: composer
coverage: none

Expand All @@ -53,7 +53,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
php-version: '8.3'
tools: composer
coverage: none

Expand All @@ -68,6 +68,7 @@ jobs:
matrix:
php:
- '8.2'
- '8.3'
symfony:
- 'unchanged'
- '6.4.*'
Expand Down

0 comments on commit d4df72a

Please sign in to comment.