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 622ca5f commit 445b1f3Copy full SHA for 445b1f3
.github/workflows/ci.yml
@@ -32,8 +32,20 @@ jobs:
32
composer require --no-update --dev symfony/symfony:${{ matrix.symfony-version }}
33
composer update --no-interaction --no-progress --no-suggest
34
35
- - name: "Run checkstyle with squizlabs/php_codesniffer"
36
- run: vendor/bin/phpcs
37
-
38
- name: "Run tests with phpunit/phpunit"
39
run: vendor/bin/phpunit --coverage-text
+
+ checkstyke:
+ name: "Checkstyle"
40
+ runs-on: ubuntu-latest
41
42
+ steps:
43
+ - name: "Checkout"
44
+ uses: actions/[email protected]
45
46
+ - name: "Install dependencies with composer"
47
+ run: |
48
+ composer update --no-interaction --no-progress --no-suggest
49
50
+ - name: "Run checkstyle with squizlabs/php_codesniffer"
51
+ run: vendor/bin/phpcs
0 commit comments