Update README.md #17
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: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
php-syntax: | |
name: PHP Syntax | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
# This should be the value of the minimum PHP version as specified in composer.json | |
php-version: 5.3 | |
extensions: opcache | |
coverage: none | |
tools: none | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Check syntax | |
uses: mlocati/check-php-syntax@main | |
with: | |
exclude: | | |
.php-cs-fixer.php | |
test | |
php-cs: | |
name: PHP Coding Style | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "8.3" | |
tools: php-cs-fixer | |
coverage: none | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Run PHP-CS-Fixer | |
run: php-cs-fixer check --ansi --no-interaction --using-cache=no --diff --show-progress=none | |
phpunit: | |
name: PHPUnit | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
php-version: | |
- "5.3" | |
- "5.4" | |
- "5.5" | |
- "5.6" | |
- "7.0" | |
- "7.1" | |
- "7.2" | |
- "7.3" | |
- "7.4" | |
- "8.0" | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
include: | |
- | |
os: windows-latest | |
php-version: "5.6" | |
- | |
os: windows-latest | |
php-version: "7.4" | |
- | |
os: windows-latest | |
php-version: "8.3" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- | |
name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
tools: composer | |
coverage: none | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- | |
name: Install Composer dependencies | |
run: composer --ansi --no-interaction --no-progress update | |
- | |
name: Run PHPUnit | |
run: composer --ansi --no-interaction run-script test -- -v |