Skip to content

Commit

Permalink
Use latest PHP version for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
trasher committed Dec 28, 2024
1 parent f742b67 commit 49f33ae
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

strategy:
matrix:
php-versions: [ '8.1', '8.3' ]
php-versions: [ '8.1', '8.4' ]
coverage: [none]
fail-fast: false

Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
cd galette-core/galette/plugins/plugin-oauth2
composer require maglnet/composer-require-checker -W
vendor/bin/composer-require-checker check --config-file=.composer-require-checker.config.json ../../composer.json
if: matrix.php-versions == '8.3'
if: matrix.php-versions == '8.4'

- name: PHPStan checks
run: |
Expand Down Expand Up @@ -112,12 +112,12 @@ jobs:
- { php-version: "8.1", db-image: "postgres:11", coverage: none, always: false }
- { php-version: "8.1", db-image: "postgres:16", coverage: none, always: false }
#higher stable php version
- { php-version: "8.3", db-image: "mysql:5.7", coverage: none, always: true }
- { php-version: "8.3", db-image: "mysql:8.1", coverage: none, always: false }
- { php-version: "8.3", db-image: "mariadb:10.4", coverage: none, always: true }
- { php-version: "8.3", db-image: "mariadb:11", coverage: none, always: false }
- { php-version: "8.3", db-image: "postgres:11", coverage: none, always: true }
- { php-version: "8.3", db-image: "postgres:16", coverage: none, always: true }
- { php-version: "8.4", db-image: "mysql:5.7", coverage: none, always: true }
- { php-version: "8.4", db-image: "mysql:8.1", coverage: none, always: false }
- { php-version: "8.4", db-image: "mariadb:10.4", coverage: none, always: true }
- { php-version: "8.4", db-image: "mariadb:11", coverage: none, always: false }
- { php-version: "8.4", db-image: "postgres:11", coverage: none, always: true }
- { php-version: "8.4", db-image: "postgres:16", coverage: none, always: true }
fail-fast: false

env:
Expand Down

0 comments on commit 49f33ae

Please sign in to comment.