Ignore F401 in __init__.py files #10
Workflow file for this run
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: | |
workflow_call: | |
jobs: | |
check1: | |
name: Check linting & types | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.9 | |
- name: Set up poetry | |
uses: snok/install-poetry@v1 | |
- name: Set up cache | |
uses: actions/cache@v1 | |
with: | |
path: .venv | |
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }} | |
restore-keys: | | |
${{ runner.os }}-venv- | |
- name: Install dependencies | |
run: | | |
poetry config virtualenvs.create true | |
poetry config virtualenvs.in-project true | |
poetry install | |
- name: Run flake8, black, and mypy | |
run: | | |
poetry run flake8 --per-file-ignores='__init__.py:F401' | |
poetry run black --check . | |
poetry run mypy . |