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 eba3045 commit 4280703Copy full SHA for 4280703
.github/workflows/ci-static-analysis.yaml
@@ -13,8 +13,22 @@ env:
13
SYMFONY_PHPUNIT_DIR: "$HOME/symfony-bridge/.phpunit"
14
15
jobs:
16
- coding-standards:
17
- name: "Coding Standards"
+ composer-validate:
+ name: "Validate composer.json"
18
+
19
+ runs-on: ubuntu-latest
20
21
+ steps:
22
+ -
23
+ name: Checkout code
24
+ uses: "actions/checkout@v4"
25
26
27
+ name: Validate composer.json
28
+ run: "composer validate --strict --no-check-lock"
29
30
+ php-cs-fixer:
31
+ name: "PHP-CS-Fixer"
32
33
runs-on: ubuntu-latest
34
@@ -29,10 +43,6 @@ jobs:
43
with:
44
php-version: 8.2
45
- -
- name: Validate composer.json
- run: "composer validate --strict --no-check-lock"
35
-
36
46
37
47
name: Composer install
38
48
uses: "ramsey/composer-install@v3"
0 commit comments