Update dependency phpstan/phpstan to ^1.10.42 #11
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: "CI" | |
on: | |
pull_request: | |
push: | |
branches: | |
- "master" | |
- "renovate/*" | |
env: | |
INI_VALUES: zend.assertions=1,error_reporting=-1 | |
jobs: | |
composer-json-lint: | |
name: "Lint composer.json" | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php-version: | |
- "8.1" | |
steps: | |
- uses: "actions/checkout@v4" | |
- uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
php-version: "${{ matrix.php-version }}" | |
ini-values: "${{ env.INI_VALUES }}" | |
tools: composer-normalize,composer-require-checker | |
- uses: "ramsey/composer-install@v2" | |
- run: "composer validate --strict" | |
- run: "composer-normalize --dry-run" | |
- run: "composer-require-checker check --config-file=$(realpath composer-require-checker.json)" | |
tests: | |
name: "Tests" | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php-version: | |
- "8.2" | |
code-coverage: | |
- "none" | |
include: | |
- php-version: "8.1" | |
code-coverage: "pcov" | |
steps: | |
- uses: "actions/checkout@v4" | |
- uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "${{ matrix.code-coverage }}" | |
php-version: "${{ matrix.php-version }}" | |
ini-values: "${{ env.INI_VALUES }}" | |
- uses: "ramsey/composer-install@v2" | |
- run: "vendor/bin/phpunit --no-coverage --no-logging" | |
if: ${{ matrix.code-coverage == 'none' }} | |
timeout-minutes: 3 | |
- run: "vendor/bin/phpunit --no-coverage --no-logging --coverage-clover=coverage.xml" | |
if: ${{ matrix.code-coverage != 'none' }} | |
timeout-minutes: 3 | |
- name: "Send code coverage report to Codecov.io" | |
if: ${{ matrix.code-coverage != 'none' }} | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage.xml | |
fail_ci_if_error: true | |
coding-standards: | |
name: "Coding Standards" | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php-version: | |
- "8.1" | |
steps: | |
- uses: "actions/checkout@v4" | |
- uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
php-version: "${{ matrix.php-version }}" | |
ini-values: "${{ env.INI_VALUES }}" | |
- uses: "ramsey/composer-install@v2" | |
- run: "vendor/bin/php-cs-fixer fix --verbose --dry-run --diff" | |
static-analysis: | |
name: "Static Analysis" | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php-version: | |
- "8.1" | |
steps: | |
- uses: "actions/checkout@v4" | |
- uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
php-version: "${{ matrix.php-version }}" | |
ini-values: "${{ env.INI_VALUES }}" | |
- uses: "ramsey/composer-install@v2" | |
- run: "vendor/bin/phpstan analyse --no-progress --error-format=github" |