Skip to content

downgrade to php 5.6 #15

downgrade to php 5.6

downgrade to php 5.6 #15

Workflow file for this run

name: PHP CI
on: [push, pull_request]
jobs:
phpunit:
name: PHPUnit Tests
runs-on: ubuntu-latest
strategy:
matrix:
php: [5.6]
steps:
- uses: actions/checkout@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer, phpunit, xdebug
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run PHPUnit Tests
run: composer run phpunit