Skip to content

Commit d274ce6

Browse files
committed
Merge remote-tracking branch 'origin/master' into bugfix/ci
2 parents 6ea062a + fa4b6ca commit d274ce6

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

.github/workflows/static-analysis.yml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,25 @@ jobs:
1010
name: "Lint & Analyse"
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
- uses: php-actions/composer@v6
1515
with:
1616
progress: yes
1717
php_version: 8.4
1818
version: 2
19-
- name: "PHP-CS-Fixer"
20-
run: composer check-cs
21-
- name: "PSalm"
22-
run: composer psalm
19+
- name: Lint & Analyse
20+
uses: php-actions/composer@v6
21+
env:
22+
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+
uses: php-actions/composer@v6
30+
with:
31+
php_version: "8.4"
32+
version: 2
33+
command: psalm
34+

0 commit comments

Comments
 (0)