Add a workflow job for PHPUnit.
This commit is contained in:
67
.github/workflows/php-code-quality.yml
vendored
Normal file
67
.github/workflows/php-code-quality.yml
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
name: PHP Code Quality
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
paths:
|
||||
- '**.php'
|
||||
- 'phpstan.neon'
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- '**.php'
|
||||
- 'phpstan.neon'
|
||||
# Allow manual triggering
|
||||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
fail-fast: true
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
phpstan:
|
||||
name: PHPStan
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: Setup PHP
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: '8.4'
|
||||
coverage: none
|
||||
tools: none
|
||||
|
||||
- name: Run PHPStan
|
||||
run: vendor/bin/phpstan analyze --no-progress
|
||||
|
||||
phpunit:
|
||||
name: PHPUnit
|
||||
runs-on: ubuntu-latest
|
||||
continue-on-error: ${{ matrix.experimental }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
php: ['8.2', '8.3', '8.4']
|
||||
experimental: [false]
|
||||
include:
|
||||
- php: '8.5'
|
||||
experimental: true
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: Setup PHP ${{ matrix.php }}
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ matrix.php }}
|
||||
coverage: none
|
||||
tools: none
|
||||
|
||||
- name: Run PHPUnit
|
||||
run: vendor/bin/phpunit --exclude integration --coverage-filter classes --coverage-filter include
|
||||
Reference in New Issue
Block a user