Skip to content

Handle AuthorizationException #112

Handle AuthorizationException

Handle AuthorizationException #112

Workflow file for this run

on: push
jobs:
tests:
runs-on: ubuntu-latest
name: Testing with Laravel ${{ matrix.laravel }} and PHP ${{ matrix.php }}
strategy:
matrix:
php: [8.1, 8.2]
laravel: [^10.0]
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip
coverage: none
- name: Install Composer dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
composer update --prefer-dist --no-interaction --no-ansi --no-progress
- name: Execute tests
run: |
vendor/bin/phpcs
vendor/bin/phpunit