@@ -25,43 +25,35 @@ name: build
25
25
jobs :
26
26
phpunit :
27
27
name : PHP ${{ matrix.php }}-${{ matrix.os }}
28
+
28
29
runs-on : ${{ matrix.os }}
30
+
29
31
strategy :
30
32
matrix :
31
33
os : [ 'ubuntu-latest', 'windows-latest' ]
32
- php : [ '8.2' ]
34
+ php : [ '8.3', '8.4' ]
35
+
33
36
steps :
34
37
- name : Checkout
35
- uses : actions/checkout@v3
38
+ uses : actions/checkout@v4
36
39
37
40
- name : Install PHP with extensions
38
41
uses : shivammathur/setup-php@v2
42
+ env :
43
+ update : true
39
44
with :
40
- ini-values : date.timezone='UTC'
41
45
php-version : ${{ matrix.php }}
42
- tools : composer:v2
46
+ ini-values : date.timezone='UTC'
47
+ coverage : xdebug
43
48
44
- - name : Determine composer cache directory on Linux
45
- if : matrix.os == 'ubuntu-latest'
46
- run : echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
49
+ - name : Install Composer dependencies
50
+ uses : ramsey/composer-install@v3
47
51
48
- - name : Determine composer cache directory on Windows
49
- if : matrix.os == 'windows-latest'
50
- run : echo "COMPOSER_CACHE_DIR=~\AppData\Local\Composer" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
52
+ - name : Run tests with PHPUnit
53
+ run : vendor/bin/phpunit --colors=always --coverage-clover=coverage.xml
51
54
52
- - name : Cache dependencies installed with composer
53
- uses : actions/cache@v3
55
+ - name : Upload coverage to Coveralls
56
+ if : matrix.os == 'ubuntu-latest'
57
+ uses : coverallsapp/github-action@v2
54
58
with :
55
- path : ${{ env.COMPOSER_CACHE_DIR }}
56
- key : php${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
57
- restore-keys : |
58
- php${{ matrix.php }}-composer-
59
-
60
- - name : Update composer
61
- run : composer self-update
62
-
63
- - name : Install dependencies with composer
64
- run : composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi
65
-
66
- - name : Run tests with PHPUnit
67
- run : vendor/bin/phpunit --configuration phpunit.xml.dist
59
+ file : ./coverage.xml
0 commit comments