Skip to content

docs: orient an agent landing in this repo #5

docs: orient an agent landing in this repo

docs: orient an agent landing in this repo #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
qa:
name: PHP ${{ matrix.php }} · Testbench ${{ matrix.testbench }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['8.4', '8.5']
testbench: ['10.*', '11.*']
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
tools: composer:v2
- name: Constrain Testbench (Laravel major)
run: composer require "orchestra/testbench:${{ matrix.testbench }}" --dev --no-update --no-interaction
- name: Install dependencies
run: composer update --prefer-dist --no-interaction --no-progress
- name: QA gate (pint · phpstan · pest · license-check · audit)
run: composer qa