Raise composer version #72
This file contains hidden or 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: [push, pull_request] | |
| jobs: | |
| build-php: | |
| name: PHP ${{ matrix.php-versions }} with Composer ${{ matrix.composer-versions }} on ${{ matrix.operating-system }} | |
| runs-on: ${{ matrix.operating-system }} | |
| strategy: | |
| max-parallel: 4 | |
| matrix: | |
| operating-system: | |
| - 'ubuntu-latest' | |
| - 'windows-latest' | |
| php-versions: | |
| - '8.0' | |
| - '8.1' | |
| - '8.2' | |
| - '8.3' | |
| composer-versions: | |
| - 'v2' | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v2 | |
| - name: Set up PHP Version | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-versions }} | |
| tools: composer:${{ matrix.composer-versions }} | |
| - name: Environment Check | |
| run: | | |
| php --version | |
| composer --version | |
| - name: Require Composer@v2 | |
| if: ${{ matrix.composer-versions == 'v2' }} | |
| run: | | |
| composer require "composer/composer:^2.2" --dev --no-update | |
| - name: Install | |
| run: | | |
| composer install --no-progress | |
| - name: Info | |
| run: | | |
| composer info | |
| - name: Lint | |
| run: | | |
| composer test:php:lint | |
| - name: CGL | |
| run: | | |
| composer cgl | |
| - name: Unit Tests | |
| run: | | |
| composer test:php:unit |