File tree 1 file changed +19
-22
lines changed
1 file changed +19
-22
lines changed Original file line number Diff line number Diff line change 1
1
name : " testing"
2
2
3
3
on :
4
- push :
5
- branches : [ master ]
6
- pull_request :
7
- branches : [ master ]
4
+ push :
5
+ branches : [ master ]
6
+ pull_request :
7
+ branches : [ master ]
8
8
9
9
jobs :
10
10
qa :
@@ -13,19 +13,19 @@ jobs:
13
13
14
14
steps :
15
15
- name : Checkout
16
- uses : actions/checkout@v2
16
+ uses : actions/checkout@v4
17
17
18
18
- name : Validate composer.json and composer.lock
19
19
run : composer validate
20
20
21
21
- name : Cache Composer packages
22
22
id : composer-cache
23
- uses : actions/cache@v2
23
+ uses : actions/cache@v4
24
24
with :
25
- path : vendor
26
- key : ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
27
- restore-keys : |
28
- ${{ runner.os }}-php-
25
+ path : vendor
26
+ key : ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
27
+ restore-keys : |
28
+ ${{ runner.os }}-php-
29
29
30
30
- name : Install dependencies
31
31
if : steps.composer-cache.outputs.cache-hit != 'true'
@@ -40,15 +40,15 @@ jobs:
40
40
41
41
strategy :
42
42
matrix :
43
- php :
44
- - 7.2
45
- - 7.3
46
- - 7.4
47
- - 8.0
48
- - 8.1
49
- - 8.2
50
- - 8.3
51
- - 8.4
43
+ php :
44
+ - 7.2
45
+ - 7.3
46
+ - 7.4
47
+ - 8.0
48
+ - 8.1
49
+ - 8.2
50
+ - 8.3
51
+ - 8.4
52
52
53
53
steps :
54
54
- name : Checkout
71
71
72
72
- name : Tests
73
73
run : composer test
74
-
75
- - name : Tests coverage
76
- run : composer coverage
You can’t perform that action at this time.
0 commit comments