Skip to content

Merge pull request #68 from clue-labs/install-beta #20

Merge pull request #68 from clue-labs/install-beta

Merge pull request #68 from clue-labs/install-beta #20

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
PHPUnit:
runs-on: ubuntu-20.04
strategy:
matrix:
php:
- 7.4
- 7.3
- 7.2
- 7.1
- 7.0
- 5.6
- 5.5
- 5.4
- 5.3
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- run: sudo apt-get -y install graphviz
- run: composer install
- run: vendor/bin/phpunit --coverage-text
if: ${{ matrix.php >= 7.3 }}
- run: vendor/bin/phpunit --coverage-text -c phpunit.xml.legacy
if: ${{ matrix.php < 7.3 }}