Apis 1081 explore desktop freezes when device is turned off during streaming #306
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/python-lint@v1.4.0 | |
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 |