Skip to content

update to jane 7.6 and regenerate the SDK #41

update to jane 7.6 and regenerate the SDK

update to jane 7.6 and regenerate the SDK #41

Workflow file for this run

name: CS Check
on: [push, pull_request]
jobs:
cs-check:
name: Check Coding Standards
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache composer
uses: actions/cache@v2
with:
path: ~/.composer/cache/
key: composer-ubuntu-${{ github.sha }}
- name: Setup
uses: shivammathur/[email protected]
with:
php-version: 8.0
extensions: mbstring, fileinfo, json, intl, dom
- name: Run composer install
run: composer install -n --prefer-dist
- name: 'php-cs-fixer check'
run: 'vendor/bin/php-cs-fixer fix --dry-run --diff'
env:
PHP_CS_FIXER_IGNORE_ENV: 1