Skip to content

Commit aaa7ade

Browse files
Fixed syntax
1 parent 2bbb357 commit aaa7ade

File tree

2 files changed

+24
-18
lines changed

2 files changed

+24
-18
lines changed

.github/workflows/static.yml

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,17 @@ jobs:
2323

2424
- name: Install Dependencies
2525
uses: nick-invision/retry@v1
26-
timeout_minutes: 5
27-
max_attempts: 5
28-
command: composer update --no-interaction --no-progress
26+
with:
27+
timeout_minutes: 5
28+
max_attempts: 5
29+
command: composer update --no-interaction --no-progress
2930

3031
- name: Install PHPStan
3132
uses: nick-invision/retry@v1
32-
timeout_minutes: 5
33-
max_attempts: 5
34-
command: composer bin phpstan update --no-interaction --no-progress
33+
with:
34+
timeout_minutes: 5
35+
max_attempts: 5
36+
command: composer bin phpstan update --no-interaction --no-progress
3537

3638
- name: Execute PHPStan
3739
run: vendor/bin/phpstan analyze --no-progress
@@ -54,15 +56,17 @@ jobs:
5456

5557
- name: Install Dependencies
5658
uses: nick-invision/retry@v1
57-
timeout_minutes: 5
58-
max_attempts: 5
59-
command: composer update --no-interaction --no-progress
59+
with:
60+
timeout_minutes: 5
61+
max_attempts: 5
62+
command: composer update --no-interaction --no-progress
6063

6164
- name: Install Psalm
6265
uses: nick-invision/retry@v1
63-
timeout_minutes: 5
64-
max_attempts: 5
65-
command: composer bin psalm update --no-interaction --no-progress
66+
with:
67+
timeout_minutes: 5
68+
max_attempts: 5
69+
command: composer bin psalm update --no-interaction --no-progress
6670

6771
- name: Execute Psalm
6872
run: vendor/bin/psalm --no-progress --output-format=github

.github/workflows/tests.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,17 @@ jobs:
3030

3131
- name: Install Dependencies
3232
uses: nick-invision/retry@v1
33-
timeout_minutes: 5
34-
max_attempts: 5
35-
command: composer update --prefer-dist --no-interaction --no-progress
33+
with:
34+
timeout_minutes: 5
35+
max_attempts: 5
36+
command: composer update --prefer-dist --no-interaction --no-progress
3637

3738
- name: Install PHPUnit
3839
uses: nick-invision/retry@v1
39-
timeout_minutes: 5
40-
max_attempts: 5
41-
command: composer bin phpunit update --no-interaction --no-progress
40+
with:
41+
timeout_minutes: 5
42+
max_attempts: 5
43+
command: composer bin phpunit update --no-interaction --no-progress
4244

4345
- name: Execute PHPUnit
4446
run: vendor/bin/phpunit

0 commit comments

Comments
 (0)