Improve CI #61
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: [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: | |
- '7.3' | |
- '7.4' | |
- '8.0' | |
- '8.1' | |
- '8.2' | |
- '8.3' | |
composer-versions: | |
- 'v1' | |
- '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@v1 | |
if: ${{ matrix.composer-versions == 'v1' }} | |
run: | | |
composer require "composer/composer:^1.10" --dev --no-update | |
- name: Require Composer@v2 | |
if: ${{ matrix.composer-versions == 'v2' }} | |
run: | | |
composer require "composer/composer:^2.0" --dev --no-update | |
- name: Install | |
run: | | |
composer install --no-progress | |
- name: Info | |
run: | | |
composer info | |
- name: Lint | |
run: | | |
composer test:php:lint | |
- name: CGL | |
# causes some problems in this combination | |
if: ${{ matrix.composer-versions == 'v2' }} | |
run: | | |
composer cgl | |
- name: Unit Tests | |
run: | | |
composer test:php:unit |