Update configuration option descriptions and readme #52
This file contains hidden or 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: [ master ] | |
| pull_request: | |
| jobs: | |
| run: | |
| name: Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.2' | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Create var dir | |
| run: mkdir var | |
| - name: Composer install | |
| run: composer install | |
| - name: Codestyle | |
| run: vendor/bin/php-cs-fixer fix -v --dry-run | |
| - name: Psalm | |
| run: vendor/bin/psalm --no-cache | |
| - name: Tests | |
| run: vendor/bin/phpunit |