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 63912e8 commit c872166Copy full SHA for c872166
.github/workflows/ci.yaml
@@ -37,13 +37,17 @@ jobs:
37
- name: "Checkout code"
38
uses: actions/checkout@v4
39
40
- - name: "Install PHP with extensions"
+ - name: "Install PHP"
41
uses: shivammathur/setup-php@v2
42
with:
43
coverage: "none"
44
php-version: ${{ matrix.php }}
45
tools: composer:${{ matrix.composer }}
46
47
+ - if: matrix.php == '7.1'
48
+ name: "Lint PHP files"
49
+ run: find src/ -name '*.php' | xargs -n1 php -l
50
+
51
- name: "Validate composer.json"
52
run: "composer validate --strict --no-check-lock"
53
@@ -71,7 +75,3 @@ jobs:
71
75
fi
72
76
73
77
- run: vendor/bin/simple-phpunit
74
-
- - if: matrix.php == '7.1'
- name: "Lint PHP files"
- run: find src/ -name '*.php' | xargs -n1 php -l
0 commit comments