File tree Expand file tree Collapse file tree 2 files changed +24
-6
lines changed Expand file tree Collapse file tree 2 files changed +24
-6
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,16 @@ jobs:
22
22
coverage : none
23
23
24
24
- name : Install Dependencies
25
- run : composer update --no-interaction --no-progress
25
+ uses : nick-invision/retry@v1
26
+ timeout_minutes : 5
27
+ max_attempts : 5
28
+ command : composer update --no-interaction --no-progress
26
29
27
30
- name : Install PHPStan
28
- run : composer bin phpstan update --no-interaction --no-progress
31
+ uses : nick-invision/retry@v1
32
+ timeout_minutes : 5
33
+ max_attempts : 5
34
+ command : composer bin phpstan update --no-interaction --no-progress
29
35
30
36
- name : Execute PHPStan
31
37
run : vendor/bin/phpstan analyze --no-progress
@@ -47,10 +53,16 @@ jobs:
47
53
coverage : none
48
54
49
55
- name : Install Dependencies
50
- run : composer update --no-interaction --no-progress
56
+ uses : nick-invision/retry@v1
57
+ timeout_minutes : 5
58
+ max_attempts : 5
59
+ command : composer update --no-interaction --no-progress
51
60
52
61
- name : Install Psalm
53
- run : composer bin psalm update --no-interaction --no-progress
62
+ uses : nick-invision/retry@v1
63
+ timeout_minutes : 5
64
+ max_attempts : 5
65
+ command : composer bin psalm update --no-interaction --no-progress
54
66
55
67
- name : Execute Psalm
56
68
run : vendor/bin/psalm --no-progress --output-format=github
Original file line number Diff line number Diff line change @@ -29,10 +29,16 @@ jobs:
29
29
run : echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
30
30
31
31
- name : Install Dependencies
32
- run : composer update --prefer-dist --no-interaction --no-progress
32
+ uses : nick-invision/retry@v1
33
+ timeout_minutes : 5
34
+ max_attempts : 5
35
+ command : composer update --prefer-dist --no-interaction --no-progress
33
36
34
37
- name : Install PHPUnit
35
- run : composer bin phpunit update --no-interaction --no-progress
38
+ uses : nick-invision/retry@v1
39
+ timeout_minutes : 5
40
+ max_attempts : 5
41
+ command : composer bin phpunit update --no-interaction --no-progress
36
42
37
43
- name : Execute PHPUnit
38
44
run : vendor/bin/phpunit
You can’t perform that action at this time.
0 commit comments