Skip to content

Change middleware stoppage and refactor #18

Change middleware stoppage and refactor

Change middleware stoppage and refactor #18

Workflow file for this run

name: CI
on:
pull_request:
branches:
- "*"
push:
branches:
- "*"
jobs:
test:
name: CI
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
php-version: ['7.4', '8.1', '8.2']
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
php-version: ${{ matrix.php-version }}
extensions: none, mb_string
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- run: composer install
- run: composer test