Add BLE support #284
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: linting | |
on: | |
pull_request: | |
branches: [master, develop] | |
jobs: | |
linting: | |
name: Lint code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: lint the code | |
uses: ricardochaves/[email protected] | |
with: | |
# Disable unnecessary linters (default flag is true) | |
use-pylint: false | |
use-pycodestyle: false | |
use-black: false | |
use-mypy: false | |
# Activate required linters | |
use-flake8: true | |
use-isort: true |