File tree 1 file changed +29
-5
lines changed
1 file changed +29
-5
lines changed Original file line number Diff line number Diff line change 13
13
14
14
strategy :
15
15
fail-fast : true
16
- matrix :
17
- php : ['8.1']
18
16
19
- name : PHP ${{ matrix.php }}
17
+ name : PHP 8.1
20
18
21
19
steps :
22
20
- name : Checkout
25
23
- name : Setup PHP
26
24
uses : shivammathur/setup-php@v2
27
25
with :
28
- php-version : ${{ matrix.php }}
26
+ php-version : 8.1
29
27
tools : composer
30
28
coverage : xdebug
31
29
60
58
cp build/coverage/clover.xml build/logs/clover.xml
61
59
composer global require php-coveralls/php-coveralls
62
60
php-coveralls --coverage_clover=build/logs/clover.xml -v
63
- if : matrix.php == '8.1'
61
+
62
+ tests-last :
63
+ runs-on : ubuntu-20.04
64
+ timeout-minutes : 10
65
+
66
+ strategy :
67
+ fail-fast : true
68
+
69
+ name : PHP 8.2 - Last
70
+
71
+ steps :
72
+ - name : Checkout
73
+ uses : actions/checkout@v2
74
+
75
+ - name : Setup PHP
76
+ uses : shivammathur/setup-php@v2
77
+ with :
78
+ php-version : 8.2
79
+ tools : composer
80
+ coverage : xdebug
81
+
82
+ - name : Install dependencies
83
+ run :
84
+ composer update
85
+
86
+ - name : PHPUnit
87
+ run : vendor/bin/phpunit --verbose
You can’t perform that action at this time.
0 commit comments