File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change 11
11
jobs :
12
12
tests :
13
13
runs-on : ubuntu-latest
14
- name : " Running on PHP ${{ matrix.php-version }}"
15
- strategy :
16
- fail-fast : false
17
- matrix :
18
- php-version : ['8.0', '8.1', '8.2']
14
+ name : " Running on PHP 8.2"
19
15
20
16
steps :
21
17
- uses : actions/checkout@v2
22
18
- name : Cache Composer dependencies
23
19
uses : actions/cache@v2
24
20
with :
25
21
path : /tmp/composer-cache
26
- key : ${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }}
22
+ key : ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
27
23
- uses : php-actions/composer@v6
28
24
with :
29
25
progress : yes
30
- php_version : ${{ matrix.php-version }}
26
+ php_version : 8.2
31
27
version : 2
32
28
- uses : php-actions/phpunit@v3
33
29
with :
34
30
configuration : phpunit.xml.dist
35
- php_version : ${{ matrix.php-version }}
31
+ php_version : 8.2
36
32
memory_limit : 1024M
37
33
version : 9
38
34
testsuite : Unit
You can’t perform that action at this time.
0 commit comments