readme: added link to Joomla integration (#583) #786
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push, pull_request] | |
env: | |
php-options: -C -d opcache.enable=0 -d zend.exception_ignore_args=0 | |
jobs: | |
tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
php: ['8.1', '8.2', '8.3', '8.4'] | |
sapi: ['php', 'php-cgi'] | |
fail-fast: false | |
name: PHP ${{ matrix.php }}/${{ matrix.sapi }} tests on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: ds | |
coverage: none | |
- run: composer install --no-progress --prefer-dist | |
- run: vendor/bin/tester tests -p ${{ matrix.sapi }} -s ${{ env.php-options }} | |
- if: failure() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: output ${{ matrix.php }}-${{ matrix.sapi }}-${{ matrix.os }} | |
path: tests/**/output | |
code_coverage: | |
name: Code Coverage | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
extensions: ds | |
coverage: none | |
- run: composer install --no-progress --prefer-dist | |
- run: vendor/bin/tester tests -p phpdbg -s ${{ env.php-options }} --coverage ./coverage.xml --coverage-src ./src | |
- run: wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.4.3/php-coveralls.phar | |
- env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: php php-coveralls.phar --verbose --config tests/.coveralls.yml |