Skip to content

Format configuration section in README.md #3

Format configuration section in README.md

Format configuration section in README.md #3

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
coverage: none
- name: Validate composer
run: composer validate --no-check-publish
- name: Install dependencies
run: composer install --no-interaction --no-progress
- name: Lint
run: find src tests -name '*.php' -print0 | xargs -0 -n1 php -l
- name: Run tests
run: composer test