Skip to content

Commit cfa5ac3

Browse files
committed
Added PHP 8.4 to tests
- Updated CI workflow
1 parent a2bcbf8 commit cfa5ac3

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/ci.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,16 @@ jobs:
88
runs-on: ubuntu-latest
99
continue-on-error: ${{ matrix.experimental || false }}
1010
strategy:
11+
fail-fast: false
1112
matrix:
12-
php-version: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
13+
php-version: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
1314
include:
14-
- php-version: '8.3'
15+
- php-version: '8.4'
1516
experimental: true
1617
steps:
1718
# Download code from repository
1819
- name: Checkout code
19-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2021

2122
# Setup PHP
2223
- name: Setup PHP
@@ -33,7 +34,7 @@ jobs:
3334
# Run static analyzer
3435
- name: Run static analyzer
3536
if: ${{ success() && matrix.php-version != '7.1' }}
36-
run: vendor/bin/phan --color --no-progress-bar
37+
run: vendor/bin/phan --allow-polyfill-parser --color --no-progress-bar
3738

3839
# Run tests
3940
- name: Run tests

0 commit comments

Comments
 (0)