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.
2 parents 6ea062a + fa4b6ca commit d274ce6Copy full SHA for d274ce6
.github/workflows/static-analysis.yml
@@ -10,13 +10,25 @@ jobs:
10
name: "Lint & Analyse"
11
runs-on: ubuntu-latest
12
steps:
13
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
14
- uses: php-actions/composer@v6
15
with:
16
progress: yes
17
php_version: 8.4
18
version: 2
19
- - name: "PHP-CS-Fixer"
20
- run: composer check-cs
21
- - name: "PSalm"
22
- run: composer psalm
+ - name: Lint & Analyse
+ uses: php-actions/composer@v6
+ env:
+ PHP_CS_FIXER_IGNORE_ENV: "1"
23
+ with:
24
+ php_version: "8.4"
25
+ version: 2
26
+ command: check-cs
27
+
28
+ - name: Run Psalm
29
30
31
32
33
+ command: psalm
34
0 commit comments