Skip to content

Update README.md

Update README.md #11

Workflow file for this run

name: Code Style
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
codestyle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Configure safe.directory # Workaround permission issue
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Editorconfig
uses: FarzamMohammadi/EditorConfig-Action@master
env:
# Only lint files changed in the pull request.
ALWAYS_LINT_ALL_FILES: false
# Automatic error fixing not yet supported by EditorConfig-Action.
# Forced off to avoid unintentionally enabling when upgrading to
# new version.
EC_FIX_ERROR: false