ci: use reusable PHP test workflow from core/php
Some checks failed
CI / tests (push) Failing after 1m1s

Replaces inline workflow with shared workflow call.

Co-Authored-By: Charon <charon@lethean.io>
This commit is contained in:
Claude 2026-02-23 01:20:49 +00:00
parent 33829927e1
commit 1226ec0db0
No known key found for this signature in database
GPG key ID: AF404715446AEB41

View file

@ -8,31 +8,6 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.3, 8.4]
name: PHP ${{ matrix.php }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: https://github.com/shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite
coverage: pcov
- name: Install dependencies
run: composer install --prefer-dist --no-interaction --no-progress
- name: Run Pint
run: vendor/bin/pint --test
- name: Run tests
run: vendor/bin/pest --ci --coverage
uses: core/php/.forgejo/workflows/php-test.yml@main
with:
coverage: true