Skip to content

CI

CI #356

Workflow file for this run

name: CI
on:
pull_request: ~
push:
branches:
- main
tags:
- '*'
schedule:
- cron: 0 13 * * MON,THU
jobs:
coverage:
name: Coverage
runs-on: ubuntu-latest
if: github.event_name != 'schedule'
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, mysqli, pcre, pdo_mysql, zlib
coverage: pcov
- name: Checkout
uses: actions/checkout@v1
- name: Install the dependencies
run: composer install --no-interaction --no-progress
- name: Generate the coverage report
run: php -d pcov.enabled=1 vendor/bin/phpunit --testsuite=coverage --coverage-clover=clover.xml --colors=always
- name: Upload the coverage report
uses: codecov/codecov-action@v2
with:
files: ./clover.xml
fail_ci_if_error: true
coding-style:
name: Coding Style
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.4 # Keep running this with PHP 7, otherwise there will be PHP 8 CS fixes
extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, mysqli, pcre, pdo_mysql, zlib
coverage: none
- name: Checkout
uses: actions/checkout@v1
- name: Install the dependencies
run: |
composer install --no-interaction --no-progress
composer bin ecs install --no-interaction --no-progress
- name: Check the coding style
run: tools/ecs/vendor/bin/ecs check src tests --no-progress-bar --ansi
tests:
name: PHP ${{ matrix.php }}
runs-on: ubuntu-latest
if: github.event_name != 'push'
strategy:
fail-fast: false
matrix:
php: [7.2, 7.3, 7.4, 8.0, 8.1]
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, mysqli, pcre, pdo_mysql, zlib
coverage: none
- name: Checkout
uses: actions/checkout@v1
- name: Install the dependencies
run: composer install --no-interaction --no-progress
- name: Run the unit tests
run: vendor/bin/phpunit --colors=always
nightly:
name: PHP 8.2
runs-on: ubuntu-latest
if: github.event_name != 'push'
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.0
extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, mysqli, pcre, pdo_mysql, zlib
coverage: none
- name: Checkout
uses: actions/checkout@v1
- name: Install the dependencies
run: composer install --ignore-platform-req=php --no-interaction --no-progress
- name: Run the unit tests
run: vendor/bin/phpunit --colors=always
prefer-lowest:
name: Prefer Lowest
runs-on: ubuntu-latest
if: github.event_name != 'push'
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, mysqli, pcre, pdo_mysql, zlib
coverage: none
- name: Checkout
uses: actions/checkout@v1
- name: Install the dependencies
run: composer update --prefer-lowest --prefer-stable --no-interaction --no-progress
- name: Run the unit tests
run: vendor/bin/phpunit --colors=always