Skip to content

minor update fixing php notice #10

minor update fixing php notice

minor update fixing php notice #10

Workflow file for this run

name: CI
on: [push]
jobs:
php:
runs-on: ubuntu-latest
strategy:
matrix:
php: [7.4]
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: composer install --no-interaction --no-progress
- name: Run tests
run: php${{ matrix.php }} vendor/bin/phpunit --verbose --fail-on-warning --coverage-text
- name: Run phpstan
run: php${{ matrix.php }} vendor/bin/phpstan analyse