Skip to content

fix: Round 1+2 framework hardening — security, reliability, performance, DX #36

fix: Round 1+2 framework hardening — security, reliability, performance, DX

fix: Round 1+2 framework hardening — security, reliability, performance, DX #36

Workflow file for this run

name: CI
on:
push:
branches: ["main", "master", "claude/**"]
pull_request:
branches: ["main", "master"]
jobs:
test:
name: PHP ${{ matrix.php-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version: ["8.1", "8.2", "8.3"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: mbstring, pdo
coverage: none
- name: Validate composer.json
run: composer validate --strict
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-interaction
- name: Run tests
run: vendor/bin/phpunit --configuration phpunit.xml