Skip to content

Ca 746 clicking on the box of the filter closes it it should only close when clicking outside the box #2049

Ca 746 clicking on the box of the filter closes it it should only close when clicking outside the box

Ca 746 clicking on the box of the filter closes it it should only close when clicking outside the box #2049

name: Backend Linters
on:
pull_request:
paths:
- "backend/**"
env:
GITHUB_WORKFLOW: github_actions
PYTHON_VERSION: "3.12"
UBUNTU_VERSION: "ubuntu-24.04"
jobs:
ruff:
runs-on: ubuntu-24.04
env:
working-directory: ./backend
strategy:
max-parallel: 4
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install ruff
working-directory: ${{env.working-directory}}
run: |
python -m pip install ruff
- name: Run ruff format check
working-directory: ${{env.working-directory}}
run: ruff format --check .
# NOTE: The following will be uncommented once the codebase is cleaned up
# - name: ruff
# working-directory: ${{env.working-directory}}
# run: ruff check .