Extension Tests #653
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: Extension Tests | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
pull_request: | |
branches: | |
- '*.x' | |
paths: | |
- '.github/workflows/test-phpunit.yml' | |
- '**.php' | |
- 'composer.json' | |
- 'phpunit.dist.xml' | |
push: | |
branches: | |
- '*.x' | |
paths: | |
- '.github/workflows/test-phpunit.yml' | |
- '**.php' | |
- 'composer.json' | |
- 'phpunit.dist.xml' | |
env: | |
TARGET_PHP_VERSION: '7.4' | |
TARGET_PHP_VERSION_ID: 70400 | |
jobs: | |
extension-tests: | |
name: PHPUnit Extension Tests [PHP ${{ matrix.php-version }}] | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: | |
- '8.1' | |
- '8.2' | |
- '8.3' | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
coverage: xdebug | |
- name: Get composer cache directory | |
id: composer-cache | |
run: echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache composer dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.composer-cache.outputs.COMPOSER_CACHE_FILES_DIR }} | |
key: composer-${{ matrix.php-version }}-${{ hashFiles('**/composer.*') }} | |
restore-keys: | | |
composer-${{ matrix.php-version }}- | |
composer- | |
- name: Setup Composer's GitHub OAuth access | |
run: composer config --global github-oauth.github.com ${{ secrets.GITHUB_TOKEN }} | |
- name: Install dependencies | |
run: composer update --ansi | |
- name: Downgrade src | |
run: php bin/transform-source ${{ env.TARGET_PHP_VERSION_ID }} | |
- name: Run lint on src | |
run: vendor/bin/parallel-lint src --colors --show-deprecated | |
- name: Run Extension Tests | |
run: vendor/bin/phpunit --no-coverage |