fix: translation missing arg and en.json #1
Workflow file for this run
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: 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 |