Skip to content

Bump codecov/codecov-action from 3 to 5 #2

Bump codecov/codecov-action from 3 to 5

Bump codecov/codecov-action from 3 to 5 #2

Workflow file for this run

# Code Style Checking
name: Code Style
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
php-cs-fixer:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
extensions: json, dom, curl, libxml, mbstring
coverage: none
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Check code style
run: vendor/bin/php-cs-fixer fix --dry-run --diff