Renamed shape to array shape, removed useless types methods #73
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: Continuous Integration | |
on: | |
pull_request: ~ | |
push: | |
branches: ['*.x'] | |
jobs: | |
composer-validate: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: [8.1] | |
steps: | |
- uses: actions/[email protected] | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: composer:v2 | |
coverage: none | |
- run: composer validate --strict --ansi | |
composer-normalize: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: [8.1] | |
steps: | |
- uses: actions/[email protected] | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: composer:v2 | |
coverage: none | |
- uses: ramsey/composer-install@v2 | |
with: | |
composer-options: --optimize-autoloader | |
- run: composer normalize --dry-run --diff --ansi | |
php-cs-fixer: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: [8.1] | |
steps: | |
- uses: actions/[email protected] | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: composer:v2, cs2pr | |
coverage: none | |
- uses: ramsey/composer-install@v2 | |
with: | |
composer-options: --optimize-autoloader | |
- run: composer fixcs -- --dry-run --diff --format=checkstyle --ansi | cs2pr | |
psalm: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: [8.1, 8.2] | |
steps: | |
- uses: actions/[email protected] | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: composer:v2 | |
coverage: none | |
- uses: ramsey/composer-install@v2 | |
with: | |
composer-options: --optimize-autoloader | |
- run: composer psalm -- --php-version=${{ matrix.php }} --stats --output-format=github |