Skip to content

Мелкие правки кода #12

Мелкие правки кода

Мелкие правки кода #12

Workflow file for this run

---
name: Check code style
on:
- push
- pull_request
jobs:
ecs-check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [7.4]
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
- name: install dependencies
run: composer install --no-progress --no-interaction
- name: check code style
run: ./vendor/bin/ecs check