Update phpstan/phpstan requirement from ^1.6 to ^1.6 || ^2.0 #135
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: PHP code quality | |
on: | |
push: | |
pull_request: | |
jobs: | |
static: | |
name: Static code analysis | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/[email protected] | |
with: | |
php-version: '8.1' | |
tools: composer | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- name: Cache Composer dependencies | |
uses: actions/[email protected] | |
with: | |
path: /tmp/composer-cache | |
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} | |
- name: composer install | |
run: composer install --no-interaction --no-progress | |
- name: Run PHPStan | |
run: composer run phpstan | |
test: | |
name: Tests on PHP ${{ matrix.php }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ['8.0', '8.1'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/[email protected] | |
with: | |
php-version: ${{ matrix.php }} | |
tools: composer | |
coverage: xdebug | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- name: Cache Composer dependencies | |
uses: actions/[email protected] | |
with: | |
path: /tmp/composer-cache | |
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} | |
- name: composer install | |
run: composer install --no-interaction --no-progress | |
- name: Run test suite | |
run: composer run phpunit | |
- uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./build/coverage/clover.xml | |
- name: Run PHPInfection | |
run: composer run infection | |
# env: | |
# STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }} |