Skip to content

Fix typo

Fix typo #40

Workflow file for this run

on: push
name: Test
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
steps:
- uses: actions/checkout@master
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
- name: Install Dependencies
run: composer install
- name: Test
run: composer run test