Enable all ruff's linting rules #39
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
# This workflow will install Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | |
name: Python application | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version-file: .python-version | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pip-tools | |
[ -f requirements.txt ] && pip-sync requirements.txt dev-requirements.txt || pip-sync dev-requirements.txt | |
- name: Lint with flake8 | |
run: make lint | |
- name: Check format with blue | |
run: make format | |
- name: Check types with mypy | |
run: make types | |
- name: Run tests | |
run: pytest -o console_output_style=classic -v |