| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- name: build
- on: [ push, pull_request ]
- jobs:
- run:
- runs-on: ${{ matrix.operating-system }}
- strategy:
- matrix:
- operating-system: [ubuntu-latest]
- php-versions: ['7.2', '7.3', '7.4', '8.0']
- name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
- steps:
- - name: Checkout
- uses: actions/checkout@v1
- - name: Setup PHP
- uses: shivammathur/setup-php@v2
- with:
- php-version: ${{ matrix.php-versions }}
- extensions: mbstring, intl, zip
- coverage: none
- - name: Check PHP Version
- run: php -v
- - name: Check Composer Version
- run: composer -V
- - name: Check PHP Extensions
- run: php -m
- - name: Validate composer.json and composer.lock
- run: composer validate
- - name: Install dependencies for PHP 7
- if: matrix.php-versions < '8.0'
- run: composer update --prefer-dist --no-progress
- - name: Install dependencies for PHP 8
- if: matrix.php-versions >= '8.0'
- run: composer update --prefer-dist --no-progress --ignore-platform-req=php
- - name: Run test suite
- run: composer check
- env:
- PHP_CS_FIXER_IGNORE_ENV: 1
|