From be1b0cb41cfb87785660f15f951e82b96b280615 Mon Sep 17 00:00:00 2001 From: vitor-aignosi Date: Fri, 17 Oct 2025 13:00:13 -0300 Subject: [PATCH] SIENTIAPDE-1318 Update GitHub Actions workflow to target 'orchestrator/' directory for code quality checks - Modified paths in the quality-gate.yml file to replace 'laborious/' with 'orchestrator/' for code formatting, linting, type checking, and security analysis steps. --- .github/workflows/quality-gate.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/quality-gate.yml b/.github/workflows/quality-gate.yml index 2ef089c..9968dbe 100644 --- a/.github/workflows/quality-gate.yml +++ b/.github/workflows/quality-gate.yml @@ -69,25 +69,25 @@ jobs: - name: ๐Ÿ“ Code Formatting Check (Ruff) run: | echo "Checking code formatting..." - ruff format --check laborious/ tests/ + ruff format --check orchestrator/ tests/ continue-on-error: false - name: ๐Ÿ”Ž Code Linting (Ruff) run: | echo "Running linting checks..." - ruff check laborious/ tests/ + ruff check orchestrator/ tests/ continue-on-error: false - name: ๐Ÿท๏ธ Type Checking (mypy) run: | echo "Running type checks..." - mypy laborious/ + mypy orchestrator/ continue-on-error: true - name: ๐Ÿ”’ Security Analysis (Bandit) run: | echo "Running security analysis..." - bandit -r laborious/ -ll -q + bandit -r orchestrator/ -ll -q continue-on-error: true - name: ๐Ÿงช Run Tests with Pytest