File tree 1 file changed +15
-9
lines changed
1 file changed +15
-9
lines changed Original file line number Diff line number Diff line change 15
15
runs-on : ubuntu-latest
16
16
strategy :
17
17
matrix :
18
- php : [8.1]
18
+ php : [8.1, 8.2, 8.3 ]
19
19
steps :
20
20
21
21
- uses : shivammathur/setup-php@v2
46
46
runs-on : ubuntu-latest
47
47
strategy :
48
48
matrix :
49
- php : [8.1]
49
+ php : [8.1, 8.2, 8.3 ]
50
50
steps :
51
51
52
52
- uses : shivammathur/setup-php@v2
80
80
runs-on : ubuntu-latest
81
81
strategy :
82
82
matrix :
83
- php : [8.1, 8.2]
83
+ php : [8.1, 8.2, 8.3 ]
84
84
steps :
85
85
86
86
- uses : shivammathur/setup-php@v2
98
98
runs-on : ubuntu-latest
99
99
strategy :
100
100
matrix :
101
- php : [8.1, 8.2]
101
+ php : [8.1, 8.2, 8.3 ]
102
102
steps :
103
103
104
104
- uses : shivammathur/setup-php@v2
@@ -114,19 +114,25 @@ jobs:
114
114
tests :
115
115
runs-on : ubuntu-latest
116
116
117
+ strategy :
118
+ matrix :
119
+ php : [8.1, 8.2, 8.3]
120
+
117
121
steps :
118
122
- name : Checkout Code
119
123
uses : actions/checkout@v2
120
124
125
+ - uses : shivammathur/setup-php@v2
126
+ with :
127
+ php-version : ${{ matrix.php }}
128
+ tools : composer:v2
129
+ coverage : xdebug
130
+ extensions : xdebug-beta
131
+
121
132
- name : Install composer and dependencies
122
133
uses : php-actions/composer@v6
123
134
124
135
- name : PHPUnit Tests
125
- uses : php-actions/phpunit@v3
126
- env :
127
- XDEBUG_MODE : coverage
128
- with :
129
- php_extensions : xdebug
130
136
run : ./vendor/bin/phpunit --coverage-clover ./vendor/coverage.xml
131
137
132
138
- name : Upload to Codecov
You can’t perform that action at this time.
0 commit comments