docs: remove all occurrences of 'unneccesary' #155
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: π Python Codestyle | |
on: | |
workflow_call: | |
push: | |
jobs: | |
lint: | |
name: Run py-codestyle check | |
runs-on: ubuntu-latest | |
steps: | |
- name: ποΈ Checkout Repository | |
uses: actions/checkout@main | |
- name: π Setup Python 3.11 | |
uses: actions/setup-python@main | |
with: | |
python-version: 3.11 | |
- name: π₯ Install Requirements and Checking Modules | |
run: | | |
pip install -r requirements.txt || true | |
pip install --upgrade pep8-naming flake8 \ | |
flake8-broken-line flake8-bugbear flake8-multiline-containers \ | |
flake8-tidy-imports flake8-pytest-style flake8-variables-names \ | |
flake8-comprehensions | |
- name: βοΈ Run Codestyle | |
run: | | |
flake8 . |