Add cancel gatt connect test (#40) #26
This file contains hidden or 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: 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 |