Merge pull request #126 from johnzuk/dependabot-github_actions-nick-i… #54
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: | |
composer: | |
name: Composer validation | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
php: [ '8.0', '8.1', '8.2', '8.3' ] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
- name: Execute composer validate | |
run: composer validate --strict | |
phpcs: | |
name: PHPCs | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
php: [ '8.0', '8.1', '8.2', '8.3' ] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
- name: Install Dependencies | |
uses: nick-invision/retry@v3 | |
with: | |
timeout_minutes: 5 | |
max_attempts: 5 | |
command: composer update --no-interaction --no-progress | |
- name: Execute PHPCs | |
run: vendor/bin/phpcs src tests | |
phpstan: | |
name: PHPStan | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
php: [ '8.0', '8.1', '8.2', '8.3' ] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
- name: Install Dependencies | |
uses: nick-invision/retry@v3 | |
with: | |
timeout_minutes: 5 | |
max_attempts: 5 | |
command: composer update --no-interaction --no-progress | |
- name: Execute PHPStan | |
run: vendor/bin/phpstan --no-progress |