ci: enforce PHP quality checks

This commit is contained in:
Keith Solomon
2026-07-04 16:11:14 -05:00
parent fef22d7b56
commit 07e58c84fe
+25
View File
@@ -0,0 +1,25 @@
name: CI
on:
push:
branches:
- main
- develop
pull_request:
permissions:
contents: read
jobs:
php:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
coverage: none
tools: composer:v2
- run: composer validate --strict
- run: composer install --no-interaction --prefer-dist
- run: composer check