Merge pull request #2479 from 77-QiQi/uim #297
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: PHP Unit Tests | ||
on: | ||
push: | ||
pull_request: | ||
types: [ opened, reopened, synchronize ] | ||
jobs: | ||
php-file-changed: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
php: ${{ steps.filter.outputs.php }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: dorny/paths-filter@v3 | ||
id: filter | ||
with: | ||
filters: | | ||
php: | ||
- '**/*.php' | ||
php8.2: | ||
Check failure on line 24 in .github/workflows/unit.yaml GitHub Actions / PHP Unit TestsInvalid workflow file
|
||
needs: php-file-changed | ||
if: ${{ needs.php-file-changed.outputs.php == 'true' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 8.2 | ||
- run: | | ||
composer install --no-interaction --no-progress --no-suggest --quiet | ||
php vendor/bin/phpunit | ||
php8.3: | ||
needs: php-file-changed | ||
if: ${{ needs.php-file-changed.outputs.php == 'true' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 8.3 | ||
- run: | | ||
composer install --no-interaction --no-progress --no-suggest --quiet | ||
php vendor/bin/phpunit |