Skip to content

Commit 1c5ac0e

Browse files
committed
Test on latest PHP versions
1 parent abcfc45 commit 1c5ac0e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,17 @@ jobs:
1818
- operating-system: 'ubuntu-latest'
1919
php-version: '8.3'
2020

21+
- operating-system: 'ubuntu-latest'
22+
php-version: '8.4'
23+
static-analysis: none
24+
style-fix: none
25+
26+
- operating-system: 'ubuntu-latest'
27+
php-version: '8.5'
28+
static-analysis: none
29+
style-fix: none
30+
31+
2132
name: PHP ${{ matrix.php-version }} ${{ matrix.job-description }}
2233

2334
runs-on: ${{ matrix.operating-system }}
@@ -73,8 +84,10 @@ jobs:
7384

7485
- name: Run static analysis
7586
run: vendor/bin/psalm.phar
87+
if: matrix.static-analysis != 'none'
7688

7789
- name: Run style fixer
7890
env:
7991
PHP_CS_FIXER_IGNORE_ENV: 1
8092
run: vendor/bin/php-cs-fixer --diff --dry-run -v fix
93+
if: runner.os != 'Windows' && matrix.style-fix != 'none'

0 commit comments

Comments
 (0)