Skip to content

Add cancel gatt connect test (#40) #26

Add cancel gatt connect test (#40)

Add cancel gatt connect test (#40) #26

Workflow file for this run

name: Push Audit
on: push
jobs:
textformat:
name: EditorConfig audit
runs-on: ubuntu-latest
steps:
- name: CheckoutCode
uses: actions/checkout@v2
with:
# 0: fetch all history for all tags/branches.
# EditorConfig/Action needs all history in order to determine changed
# files to support ALWAYS_LINT_ALL_FILES: false.
fetch-depth: 0
- name: Configure safe.directory # Workaround permission issue
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
# Verify changed files conform to .editorconfig
- name: EditorConfig-Action
uses: FarzamMohammadi/EditorConfig-Action@master
env:
# Only lint files changed in the push.
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