Skip to content

Merge pull request #19 from script-development/chore/codeowners #41

Merge pull request #19 from script-development/chore/codeowners

Merge pull request #19 from script-development/chore/codeowners #41

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['8.4', '8.5']
steps:
- uses: actions/checkout@v6
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: pcov
tools: composer:v2
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-interaction
- name: Audit dependencies
run: composer audit
- name: Format check
run: composer format:check
- name: Static analysis (self)
run: composer phpstan
- name: Tests with coverage
run: composer test:coverage
- name: Coverage threshold gate
run: composer coverage:check
- name: Upload coverage report
if: always()
uses: actions/upload-artifact@v7
with:
name: clover-php-${{ matrix.php }}
path: build/logs/clover.xml
retention-days: 14
if-no-files-found: ignore
- name: Mutation testing
run: composer mutation:ci
- name: Upload mutation report
if: always()
uses: actions/upload-artifact@v7
with:
name: infection-php-${{ matrix.php }}
path: build/logs/infection.*
retention-days: 14
if-no-files-found: ignore