Setup PHP CS Fixer (#27) #27
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: "Build" | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
jobs: | |
build: | |
name: PHP ${{ matrix.php }} with ${{ matrix.dependencies }} deps | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
max-parallel: 8 | |
matrix: | |
dependencies: | |
- "lowest" | |
- "highest" | |
php: | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
os: | |
- "ubuntu-latest" | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v3 | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: none | |
php-version: "${{ matrix.php }}" | |
ini-values: memory_limit=-1 | |
- name: "Install dependencies" | |
uses: ramsey/composer-install@v2 | |
with: | |
dependency-versions: "${{ matrix.dependencies }}" | |
- name: "Check code style" | |
if: ${{ matrix.dependencies == 'highest' && matrix.php == '8.1' }} | |
run: composer code-style:check | |
- name: "Run psalm" | |
run: vendor/bin/psalm | |
- name: "Run phpunit" | |
run: vendor/bin/phpunit | |
- name: "Run phpbench" | |
run: vendor/bin/phpbench run |