Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP Update CI with newer PHP and PSQL versions #1995

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions .github/workflows/ci.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: [ '7.4', '8.2' ]
php-version: [ '7.4', '8.2', '8.3' ]
db-type: [ sqlite, mysql, pgsql, agnostic ]
symfony-version: [ '4-min', '4-max', '5-min', '5-max', '6-min', '6-max' ]
exclude:
Expand All @@ -37,8 +37,17 @@ jobs:
postgresql user: $DB_USER
postgresql password: $DB_PW

- name: Install PostgreSQL 16
if: matrix.db-type == 'pgsql' && matrix.php-version == '7.4' && matrix.symfony-version == '6-max'
uses: CasperWA/[email protected]
with:
postgresql version: 16
postgresql db: $DB_NAME
postgresql user: $DB_USER
postgresql password: $DB_PW

- name: Install PostgreSQL min
if: matrix.db-type == 'pgsql' && matrix.php-version == '7.4'
if: matrix.db-type == 'pgsql' && matrix.php-version == '7.4' && matrix.symfony-version == '6-min'
uses: CasperWA/[email protected]
with:
postgresql version: 9
Expand Down
Loading