From eee17b6b588aaabbb15dfcb1af58ce4358ccce4b Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Sat, 23 Aug 2025 01:24:06 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7(agents)=20add=20CI=20job=20to=20li?= =?UTF-8?q?nt=20Python=20agent=20sources?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Implement CI job to lint agent Python sources and enforce merging only linted code to maintain code quality standards. --- .github/workflows/meet.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/meet.yml b/.github/workflows/meet.yml index 15c29632..d02e5d1e 100644 --- a/.github/workflows/meet.yml +++ b/.github/workflows/meet.yml @@ -92,6 +92,26 @@ jobs: - name: Lint code with pylint run: ~/.local/bin/pylint meet demo core + lint-agents: + runs-on: ubuntu-latest + defaults: + run: + working-directory: src/agents + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Install Python + uses: actions/setup-python@v5 + with: + python-version: "3.13" + cache: "pip" + - name: Install development dependencies + run: pip install --user .[dev] + - name: Check code formatting with ruff + run: ~/.local/bin/ruff format . --diff + - name: Lint code with ruff + run: ~/.local/bin/ruff check . + test-back: runs-on: ubuntu-latest needs: build-mails