Files
ladill-frontdesk/.gitea/workflows/test.yml
T
isaaccladandCursor e42be653e5
Deploy Ladill Frontdesk / deploy (push) Successful in 40s
Test / test (push) Failing after 2m8s
Fix CI test workflow for PHP 8.4 dependency lock.
Symfony 8.1 packages in composer.lock require PHP 8.4.1+; align setup-php and composer platform constraint with production.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-27 20:46:19 +00:00

22 lines
528 B
YAML

name: Test
on:
push:
branches: [main, master, develop]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, intl, gd
coverage: none
- name: Install dependencies
run: composer install --no-interaction --prefer-dist
- name: Run tests
run: php artisan test