Skip to content

Update docs, syntax, CI, etc. #28

Update docs, syntax, CI, etc.

Update docs, syntax, CI, etc. #28

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '**'
jobs:
build:
strategy:
matrix:
php: [ '7.4', '8.0', '8.1', '8.2', '8.3' ]
runs-on: ubuntu-latest
name: PHP ${{ matrix.php }}
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{matrix.php}}
- name: Install
run: |
composer install
- name: Test
run: composer test