Skip to content

Version 0.1.0

Version 0.1.0 #50

Workflow file for this run

name: CI
on:
pull_request: ~
push:
branches:
- main
tags:
- '*'
schedule:
- cron: 0 13 * * MON,TUE
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, pcre, pdo, zlib
tools: prestissimo, flex
coverage: none
- name: Checkout
uses: actions/checkout@v2
- name: Install the dependencies
run: composer install --no-interaction --no-suggest
- name: Generate the coverage report
run: phpdbg -qrr vendor/bin/phpunit --coverage-clover=clover.xml --colors=always
- name: Upload the coverage report
uses: codecov/codecov-action@v1
with:
file: ./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
extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, pcre, pdo, zlib
tools: prestissimo, flex
coverage: none
- name: Checkout
uses: actions/checkout@v2
- name: Install the dependencies
run: composer install --no-interaction --no-suggest
- name: Check the coding style
run: vendor/bin/ecs check src tests --config ecs.php --no-progress-bar --ansi
- name: Analyze the code
run: |
vendor/bin/phpstan analyse src tests --level=5 --no-progress
vendor/bin/psalm --no-suggestions --threads=4 --no-progress
tests:
name: PHP ${{ matrix.php }}
runs-on: ubuntu-latest
if: github.event_name != 'push'
strategy:
fail-fast: false
matrix:
php: [7.4, 8.0]
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, pcre, pdo_mysql, zlib
tools: prestissimo, flex
coverage: none
- name: Checkout
uses: actions/checkout@v2
- name: Install the dependencies
run: composer install --no-interaction --no-suggest
- 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, pcre, pdo_mysql, zlib
tools: prestissimo, flex
coverage: none
- name: Checkout
uses: actions/checkout@v2
- name: Install the dependencies
run: composer update --prefer-lowest --prefer-stable --no-interaction --no-suggest
- name: Run the unit tests
run: vendor/bin/phpunit --colors=always