Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Update README.md

Update README.md #68

Workflow file for this run

name: CI
on:
pull_request: null
push:
branches:
- master
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['7.2', '7.3', '7.4']
name: Linting - PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
extensions: intl
- run: composer install --no-progress
- run: composer codestyle
- run: composer phpstan
- run: composer tests