Skip to content

chore: update version to 5.0.7 in Condorcet class and add changelog e… #32

chore: update version to 5.0.7 in Condorcet class and add changelog e…

chore: update version to 5.0.7 in Condorcet class and add changelog e… #32

Workflow file for this run

name: Code Style
on: [push, pull_request]
jobs:
php-cs-fixer:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: ['8.5']
name: PHP ${{ matrix.php-version }} CS Fixer
steps:
- uses: actions/checkout@v6
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: mbstring
coverage: none
- 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: Run PHP CS Fixer (dry-run)
run: vendor/bin/php-cs-fixer fix --dry-run --diff --verbose