Skip to content

215 poprawa typów dla myp i uzupełnienie tłumaczeń EN #424

215 poprawa typów dla myp i uzupełnienie tłumaczeń EN

215 poprawa typów dla myp i uzupełnienie tłumaczeń EN #424

Workflow file for this run

name: Quality
on:
pull_request:
branches: ["main"]
jobs:
ruff:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
cache-dependency-path: requirements-ci.txt
- name: Install tooling
run: |
python -m pip install --upgrade pip
pip install ruff==0.6.9
- name: Ruff lint
run: |
ruff check . --output-format=github
- name: Ruff format check
run: |
ruff format --check .