Skip to content

fix and sync readme #62

fix and sync readme

fix and sync readme #62

Workflow file for this run

name: PHP Composer
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Execute Test
run: vendor/bin/phpunit --coverage-text --colors=never --bootstrap vendor/autoload.php tests