Skip to content

Updated the changedAttributes filling method; remove method array_dif… #39

Updated the changedAttributes filling method; remove method array_dif…

Updated the changedAttributes filling method; remove method array_dif… #39

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
phpunit:
name: PHP ${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1' ]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: sqlite
- name: Install dependencies
run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader
- name: PHP Unit tests
run: vendor/bin/phpunit --verbose