| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- name: Static analysis
- on:
- push:
- pull_request:
- jobs:
- test:
- name: PHPStan
- runs-on: ubuntu-latest
- strategy:
- fail-fast: false
- steps:
- - name: Check out code
- uses: actions/checkout@v3.5.3
- - name: Install PHP
- uses: shivammathur/setup-php@2.25.4
- with:
- php-version: '7.4'
- tools: composer:v2
- coverage: none
- - name: Install dependencies
- uses: nick-fields/retry@v2.8.3
- with:
- timeout_minutes: 5
- max_attempts: 5
- command: composer update --no-interaction --no-progress
- - name: Install PHPStan
- uses: nick-fields/retry@v2.8.3
- with:
- timeout_minutes: 5
- max_attempts: 5
- command: composer bin phpstan update --no-interaction --no-progress
- - name: Run static analysis
- run: make phpstan
|