Skip to content

Update year in license file #171

Update year in license file

Update year in license file #171

Workflow file for this run

name: Fix coding style
on: [push, pull_request]
jobs:
php-cs-fixer:
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
extensions: mbstring, pdo, pdo_sqlite, openssl
coverage: none
- name: Install dependencies
run: composer install
- name: run PHP CS Fixer
run: vendor/bin/php-cs-fixer fix --diff --dry-run