Roll back ramsey/composer-install action to 3.0.0 #2382
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: | |
env: | |
PHP_CURRENT: "8.3" | |
PHP_NEXT: "8.4" | |
jobs: | |
composer-json-lint: | |
name: "Lint composer.json" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v4" | |
- uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "pcov" | |
php-version: "${{ env.PHP_CURRENT }}" | |
ini-values: "${{ env.INI_VALUES }}" | |
tools: composer-normalize, composer-require-checker | |
- uses: "ramsey/[email protected]" | |
- run: "composer validate --strict" | |
- run: "composer-normalize --dry-run" | |
coding-standards: | |
name: "Coding Standards" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v4" | |
- uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
php-version: "${{ env.PHP_CURRENT }}" | |
ini-values: "${{ env.INI_VALUES }}" | |
tools: cs2pr | |
- uses: "ramsey/[email protected]" | |
- run: "vendor/bin/phpcs -q --report=checkstyle | cs2pr" | |
static-analysis: | |
name: "Static Analysis" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v4" | |
- uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
php-version: "${{ env.PHP_CURRENT }}" | |
ini-values: "${{ env.INI_VALUES }}" | |
- uses: "ramsey/[email protected]" | |
- run: "vendor/bin/phpstan" | |
tests: | |
name: "Tests" | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php-version: | |
- "8.3" | |
- "8.4" | |
dependencies: | |
- "lowest" | |
- "locked" | |
- "highest" | |
steps: | |
- uses: "actions/checkout@v4" | |
- uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "pcov" | |
php-version: "${{ matrix.php-version }}" | |
ini-values: "${{ env.INI_VALUES }}" | |
- uses: "ramsey/[email protected]" | |
with: | |
dependency-versions: "${{ matrix.dependencies }}" | |
- name: "Run tests" | |
timeout-minutes: 3 | |
run: "vendor/bin/phpunit --no-coverage --no-logging" | |
code-coverage: | |
name: "Code Coverage" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v4" | |
- uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "pcov" | |
php-version: "${{ env.PHP_CURRENT }}" | |
ini-values: "${{ env.INI_VALUES }}" | |
- uses: "ramsey/[email protected]" | |
- name: "Run Infection" | |
timeout-minutes: 30 | |
run: "vendor/bin/infection --ansi --show-mutations" | |
env: | |
INFECTION_DASHBOARD_API_KEY: "${{ secrets.INFECTION_DASHBOARD_API_KEY }}" | |
STRYKER_DASHBOARD_API_KEY: "${{ secrets.STRYKER_DASHBOARD_API_KEY }}" |