Skip to content

WIP - feature: make laravel 11 ready #49

WIP - feature: make laravel 11 ready

WIP - feature: make laravel 11 ready #49

Workflow file for this run

name: Tests
on: [ push, pull_request ]
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '8.2' ]
name: Testing on PHP ${{ matrix.php-versions }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring,bcmath
tools: composer
- name: Install dependencies
run: composer install --quiet --no-ansi --no-interaction --no-scripts --no-progress
- name: Run tests
run: composer test