Skip to content

fixed lint

fixed lint #14

Workflow file for this run

name: Lints
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dev dependencies
run: |
pip install poetry
poetry install
- name: flake8
run: |
poetry run flake8 wikimedia/ --config wikimedia/setup.cfg
- name: black
run: |
poetry run black --check --diff .