This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
[TASK] Update phpunit/phpunit to v10.5.38 #1396
Workflow file for this run
This file contains 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: CGL | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
cgl: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
# Prepare environment | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
tools: composer:v2, composer-unused | |
coverage: none | |
# Validation | |
- name: Validate composer.json | |
run: composer validate | |
# Install dependencies | |
- name: Install Composer dependencies | |
uses: ramsey/composer-install@v2 | |
# Check licenses | |
- name: Compare vendor licenses against whitelist | |
run: composer check:licenses | |
- name: Lint composer.json | |
run: composer lint:composer -- --dry-run | |
- name: Lint Editorconfig | |
run: composer lint:editorconfig | |
- name: Lint PHP | |
run: composer lint:php -- --dry-run --format=checkstyle | |
- name: Lint Twig templates | |
run: composer lint:twig | |
- name: SCA PHP | |
run: composer sca:php -- --error-format github | |
- name: Rector migration | |
run: composer migration:rector -- --dry-run | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 |