Add "no named arguments used" rule #67
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: Testing | |
on: | |
push: | |
pull_request: | |
jobs: | |
code-style: | |
name: Check code style | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
coverage: "none" | |
ini-values: "memory_limit=-1" | |
php-version: "8.1" | |
tools: "composer" | |
- name: Install vendors | |
run: composer install --prefer-dist | |
- name: Check style on sources | |
run: ./bin/phpcs --standard=src/PhpCs/FiveLab/ruleset.xml src/ | |
- name: Check style on tests | |
run: ./bin/phpcs --standard=tests/phpcs.xml tests/ | |
php-stan: | |
name: Run PHP-Stan | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
coverage: "none" | |
ini-values: "memory_limit=-1" | |
php-version: "8.1" | |
tools: "composer" | |
- name: Install vendors | |
run: composer install --prefer-dist | |
- name: Run php stan | |
run: bin/phpstan | |
tests: | |
name: Run tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: [ '8.0', '8.1', '8.2' ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
coverage: "none" | |
ini-values: "memory_limit=-1" | |
php-version: "${{ matrix.php }}" | |
tools: "composer" | |
- name: Install stable vendors | |
run: composer install --prefer-dist | |
- name: Run tests | |
run: bin/phpunit |