Translated using Weblate (Slovak) #1013
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: Lint and analyse PHP files | |
on: | |
push: | |
pull_request: | |
types: [ opened, synchronize, reopened ] | |
jobs: | |
lint-php: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-version: [ '8.2' ] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up PHP ${{ matrix.php-version }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
- name: Install Composer dependencies | |
uses: ramsey/composer-install@v3 | |
- name: Check coding-standard | |
run: composer run phpcs | |
- name: Validate composer.json and composer.lock | |
run: composer validate --strict | |
analyse-php: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-version: [ '8.2' ] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up PHP ${{ matrix.php-version }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
- name: Install Composer dependencies | |
uses: ramsey/composer-install@v3 | |
- name: Analyse files with PHPStan | |
run: composer run phpstan | |
- name: Analyse files with Psalm | |
if: always() | |
run: composer run psalm -- --shepherd |