Replace CaptainHook with Lefthook #89
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| php-version: | |
| - '8.4' | |
| - '8.5' | |
| name: PHP ${{ matrix.php-version }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| - name: Validate composer.json and composer.lock | |
| run: composer validate --strict | |
| - name: Cache Composer packages | |
| id: composer-cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: vendor | |
| key: ${{ runner.os }}-php-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-php-${{ matrix.php-version }}- | |
| - name: Install dependencies | |
| run: composer install --prefer-dist --no-progress | |
| - name: Check composer.json normalization | |
| run: composer normalize --diff --dry-run | |
| - name: Check README examples are in sync | |
| run: | | |
| vendor/bin/readme-examples-sync | |
| git diff --exit-code README.md || (echo "README.md is out of sync with example files. Run 'vendor/bin/readme-examples-sync' and commit the changes." && exit 1) | |
| - name: Check dependencies | |
| run: vendor/bin/composer-dependency-analyser | |
| - name: Run PHP CS Fixer | |
| run: vendor/bin/php-cs-fixer check --diff | |
| - name: Run Twig CS Fixer | |
| run: vendor/bin/twig-cs-fixer lint | |
| - name: Run PHPStan | |
| run: vendor/bin/phpstan analyse | |
| - name: Run tests | |
| run: vendor/bin/phpunit |