Skip to content

HPB-4006 prevent unsafe request data #114

HPB-4006 prevent unsafe request data

HPB-4006 prevent unsafe request data #114

Workflow file for this run

on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
run_tests:
runs-on: ubuntu-22.04
strategy:
fail-fast: true
matrix:
php: [8.2, 8.3]
laravel: [^10, ^11]
stability: [prefer-lowest, prefer-stable]
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.stability }}
steps:
- uses: actions/[email protected]
with:
fetch-depth: 1
- name: Setup PHP
uses: shivammathur/[email protected]
with:
php-version: ${{ matrix.php }}
coverage: none
tools: composer:v2
- name: Install dependencies
run: |
composer require "illuminate/support:${{ matrix.laravel }}" --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: Run tests
run: vendor/bin/phpunit