Skip to content

Commit defd088

Browse files
authored
Don't check ccm9-only files for PHP 5.5 syntax (#4)
1 parent 0129026 commit defd088

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/tests.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,17 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
php-version:
21-
- "5.5"
22-
- "8.4"
20+
include:
21+
-
22+
php-version: "5.5"
23+
exclude-paths: |
24+
src/Concrete/Task
25+
-
26+
php-version: "7.3"
27+
exclude-paths: ""
28+
-
29+
php-version: "8.4"
30+
exclude-paths: ""
2331
steps:
2432
-
2533
name: Checkout
@@ -37,6 +45,7 @@ jobs:
3745
uses: mlocati/check-php-syntax@v1
3846
with:
3947
fail-on-warnings: true
48+
exclude: ${{ matrix.exclude-paths }}
4049

4150
check-development-leftovers:
4251
name: Check Development Leftovers

0 commit comments

Comments
 (0)