File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,3 +9,36 @@ permissions: read-all
99jobs :
1010 ci :
1111 uses : ' terminal42/contao-build-tools/.github/workflows/build-tools.yml@main'
12+
13+ php :
14+ name : PHP ${{ matrix.php-version }}
15+ runs-on : ubuntu-latest
16+
17+ strategy :
18+ matrix :
19+ php-version :
20+ - ' 8.3'
21+ - ' 8.4'
22+ - ' 8.5'
23+
24+ steps :
25+ - name : Checkout
26+ uses : actions/checkout@v4
27+
28+ - name : Setup PHP
29+ uses : shivammathur/setup-php@v2
30+ with :
31+ php-version : ${{ matrix.php-version }}
32+ coverage : xdebug
33+
34+ - name : Install dependencies
35+ run : COMPOSER_MEMORY_LIMIT=-1 composer install --dev --no-interaction
36+
37+ - name : Run tests
38+ run : |
39+ mkdir -p build/logs
40+ php vendor/bin/phpunit -c phpunit.xml.dist
41+
42+ - name : Upload coverage
43+ run : php vendor/bin/php-coveralls
44+ continue-on-error : true
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 33[ ![ Version] ( https://img.shields.io/packagist/v/codefog/tags-bundle )] ( https://packagist.org/packages/codefog/tags-bundle )
44[ ![ License] ( https://img.shields.io/github/license/codefog/tags-bundle )] ( https://github.com/codefog/tags-bundle/blob/master/LICENSE.txt )
55[ ![ Downloads] ( https://img.shields.io/packagist/dm/codefog/tags-bundle )] ( https://packagist.org/packages/codefog/tags-bundle )
6- [ ![ Build Status] ( https://travis-ci.org/codefog/tags-bundle.svg?branch=master )] ( https://travis-ci.org/codefog/tags-bundle )
76[ ![ Coverage Status] ( https://coveralls.io/repos/github/codefog/tags-bundle/badge.svg?branch=master )] ( https://coveralls.io/github/codefog/tags-bundle?branch=master )
87
98Tags Bundle is an extension for the [ Contao Open Source CMS] ( https://contao.org ) .
You can’t perform that action at this time.
0 commit comments