Skip to content

fix: Refactor async_add_job and async_forward_entry_setup #20

fix: Refactor async_add_job and async_forward_entry_setup

fix: Refactor async_add_job and async_forward_entry_setup #20

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- main
paths:
- "**.py"
push:
branches:
- main
paths:
- "**.py"
jobs:
lint-black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: psf/black@stable
with:
options: ". --check"
lint-isort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- uses: jamescurtin/isort-action@master
with:
configuration: "--check-only --diff --profile black"