Skip to content

chore: Update language selector style and behavior #63

chore: Update language selector style and behavior

chore: Update language selector style and behavior #63

Workflow file for this run

name: Lint Code with Black
on:
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9" # Spécifie la version de Python que tu utilises
- name: Install Black
run: |
python -m pip install --upgrade pip
pip install black==24.10.0
- name: Run Black
run: black --check --exclude "backend/custom_app.py" ./backend