Skip to content

Add Middleware for verifying a Plain signature & fix tests #42

Add Middleware for verifying a Plain signature & fix tests

Add Middleware for verifying a Plain signature & fix tests #42

Workflow file for this run

name: Package Tests
on:
push:
branches:
- master
- '*.x'
pull_request:
jobs:
package-tests:
runs-on: ubuntu-22.04
strategy:
fail-fast: true
matrix:
php: [ 8.1, 8.2, 8.3, 8.4 ]
laravel: [ 8, 9, 10, 11 ]
exclude:
- php: 8.1
laravel: 11
- php: 8.4
laravel: 8
- php: 8.4
laravel: 9
- php: 8.4
laravel: 10
name: PHP ${{ matrix.php }} L${{ matrix.laravel }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip
ini-values: error_reporting=E_ALL
tools: composer:v2
coverage: none
- name: Install dependencies
uses: nick-fields/retry@v2
with:
timeout_minutes: 5
max_attempts: 5
command: composer update --prefer-dist --no-interaction --no-progress --prefer-stable
- name: Execute tests
run: vendor/bin/phpunit