File tree 2 files changed +30
-6
lines changed 2 files changed +30
-6
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,18 @@ 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
+ with :
27
+ timeout_minutes : 5
28
+ max_attempts : 5
29
+ command : composer update --no-interaction --no-progress
26
30
27
31
- name : Install PHPStan
28
- run : composer bin phpstan update --no-interaction --no-progress
32
+ uses : nick-invision/retry@v1
33
+ with :
34
+ timeout_minutes : 5
35
+ max_attempts : 5
36
+ command : composer bin phpstan update --no-interaction --no-progress
29
37
30
38
- name : Execute PHPStan
31
39
run : vendor/bin/phpstan analyze --no-progress
@@ -47,10 +55,18 @@ jobs:
47
55
coverage : none
48
56
49
57
- name : Install Dependencies
50
- run : composer update --no-interaction --no-progress
58
+ uses : nick-invision/retry@v1
59
+ with :
60
+ timeout_minutes : 5
61
+ max_attempts : 5
62
+ command : composer update --no-interaction --no-progress
51
63
52
64
- name : Install Psalm
53
- run : composer bin psalm update --no-interaction --no-progress
65
+ uses : nick-invision/retry@v1
66
+ with :
67
+ timeout_minutes : 5
68
+ max_attempts : 5
69
+ command : composer bin psalm update --no-interaction --no-progress
54
70
55
71
- name : Execute Psalm
56
72
run : vendor/bin/psalm --no-progress --output-format=github
Original file line number Diff line number Diff line change @@ -29,10 +29,18 @@ 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
+ with :
34
+ timeout_minutes : 5
35
+ max_attempts : 5
36
+ command : composer update --no-interaction --no-progress
33
37
34
38
- name : Install PHPUnit
35
- run : composer bin phpunit update --no-interaction --no-progress
39
+ uses : nick-invision/retry@v1
40
+ with :
41
+ timeout_minutes : 5
42
+ max_attempts : 5
43
+ command : composer bin phpunit update --no-interaction --no-progress
36
44
37
45
- name : Execute PHPUnit
38
46
run : vendor/bin/phpunit
You can’t perform that action at this time.
0 commit comments