Skip to content

Commit 06d069d

Browse files
committed
update phplint
1 parent 0a863d3 commit 06d069d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,12 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
php-version: ['7.4', '8.0', '8.1', '8.2']
14+
php-version: ['8.0', '8.1', '8.2']
1515
experimental: [false]
16+
unsupported: [false]
1617
include:
18+
- php-version: '7.4'
19+
unsupported: true
1720
- php-version: '8.3'
1821
experimental: true
1922
- php-version: '8.4'
@@ -83,6 +86,7 @@ jobs:
8386
mv base-distribution-main base
8487
cd base
8588
composer update --no-dev
89+
if: ${{ matrix.unsupported == false }}
8690

8791
- name: Start Test Server
8892
run: |
@@ -103,12 +107,14 @@ jobs:
103107
with:
104108
path: ./public_html
105109
options: --exclude=lists/base
110+
if: ${{ matrix.unsupported == false }}
106111
continue-on-error: ${{ matrix.experimental }}
107112

108113
- name: Check PHP syntax errors in API
109114
uses: overtrue/phplint@9.5.0
110115
with:
111116
path: ./public_html/lists/base/vendor/phplist
117+
if: ${{ matrix.unsupported == false }}
112118
continue-on-error: ${{ matrix.experimental }}
113119

114120
- name: Run BDD Tests UI

0 commit comments

Comments
 (0)