We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0129026 commit defd088Copy full SHA for defd088
.github/workflows/tests.yml
@@ -17,9 +17,17 @@ jobs:
17
runs-on: ubuntu-latest
18
strategy:
19
matrix:
20
- php-version:
21
- - "5.5"
22
- - "8.4"
+ include:
+ -
+ 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
31
steps:
32
-
33
name: Checkout
@@ -37,6 +45,7 @@ jobs:
37
45
uses: mlocati/check-php-syntax@v1
38
46
with:
39
47
fail-on-warnings: true
48
+ exclude: ${{ matrix.exclude-paths }}
40
49
41
50
check-development-leftovers:
42
51
name: Check Development Leftovers
0 commit comments