Add release version to changelog #72
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: Static analysis | |
on: [ push, pull_request ] | |
jobs: | |
phpstan: | |
name: PHPStan | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.1' | |
coverage: none | |
- name: Download dependencies | |
run: composer install --no-interaction --no-progress | |
- name: Download PHPStan | |
run: composer bin phpstan install --no-interaction --no-progress | |
- name: Execute PHPStan | |
run: vendor/bin/phpstan analyze --no-progress | |
php-cs-fixer: | |
name: PHP-CS-Fixer | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.1' | |
coverage: none | |
- name: Download dependencies | |
run: composer install --no-interaction --no-progress | |
- name: Download PHP CS Fixer | |
run: composer bin php-cs-fixer install --no-interaction --no-progress | |
- name: Execute PHP CS Fixer | |
run: vendor/bin/php-cs-fixer fix --diff --dry-run | |
psalm: | |
name: Psalm | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.1' | |
coverage: none | |
- name: Download dependencies | |
run: composer install --no-interaction --no-progress | |
- name: Download Psalm | |
run: composer bin psalm install --no-interaction --no-progress | |
- name: Execute Psalm | |
run: vendor/bin/psalm.phar --no-progress --output-format=github |