Skip to content

fix walkdirs method

fix walkdirs method #4

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.0', '8.1', '8.2', '8.3']
steps:
- uses: actions/checkout@v2
- name: Setup php
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Validate
run: composer validate
- name: Install
run: composer install --prefer-dist --no-progress
- name: Run
run: ./vendor/bin/phpunit