Add unit test to the new ToDictionary method #55
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Audit | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
editorconfig: | |
runs-on: ubuntu-latest | |
steps: | |
- name: CheckoutCode | |
uses: actions/checkout@v2 | |
- name: Configure safe.directory # Workaround permission issue | |
run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
- name: EditorConfig-Action | |
uses: FarzamMohammadi/EditorConfig-Action@master | |
env: | |
# Only lint files changed in 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 | |
C_FIX_ERROR: false |