Skip to content

[TASK] Check if config files are valid files #44

[TASK] Check if config files are valid files

[TASK] Check if config files are valid files #44

Workflow file for this run

name: build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['8.2', '8.3']
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
extensions: mbstring, json
- name: Validate composer.json
run: composer validate
- name: Lint PHP
run: |
find src/ tests/ -name '*.php' -print0 | xargs -0 -n1 -P4 php -dxdebug.mode=off -l >/dev/null
- name: Install dependencies
run: composer update
- name: CGL check
run: vendor/bin/php-cs-fixer fix --dry-run --diff -v
- name: Phpstan
run: vendor/bin/phpstan analyze --no-progress
# - name: Phpunit
# run: vendor/bin/phpunit