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 b6bf30d commit 6edce2dCopy full SHA for 6edce2d
.github/workflows/static-analysis.yaml
@@ -37,3 +37,19 @@ jobs:
37
38
- name: Run script
39
run: vendor/bin/phpstan analyse
40
+
41
+ composer-validate:
42
+ name: Composer validate
43
+ runs-on: ubuntu-latest
44
+ steps:
45
+ - name: Checkout
46
+ uses: actions/checkout@v2
47
48
+ - name: Setup PHP
49
+ uses: shivammathur/setup-php@v2
50
51
+ - name: Install dependencies
52
+ run: composer install --no-progress --no-interaction --prefer-dist
53
54
+ - name: Run script
55
+ run: composer composer-validate
composer.json
@@ -52,6 +52,9 @@
}
},
"scripts": {
+ "composer-validate": [
56
+ "composer validate"
57
+ ],
58
"cs": [
59
"vendor/bin/phpcs"
60
],
0 commit comments