[6.0] Compatible with PHP 8.4 (PDO) #79
Workflow file for this run
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: Xdebug Support Tests | |
on: [push, pull_request] | |
jobs: | |
tests: | |
if: "!contains(github.event.head_commit.message, '--filter=') || contains(github.event.head_commit.message, '[xdebug]')" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ['8.1', '8.2', '8.3'] | |
name: PHP ${{ matrix.php }} - Swoole | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: phpize | |
ini-values: extension=swoole | |
coverage: xdebug | |
- name: Build Swoole | |
run: | | |
phpize | |
./configure | |
make -j$(nproc) | |
sudo make install | |
- name: Check extension conflict | |
run: | | |
php -v | |
php -m | |
php --ri swoole |