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.
This commit is contained in:
vitor-aignosi
2025-10-17 13:00:13 -03:00
parent aaff7320b8
commit be1b0cb41c

View File

@@ -69,25 +69,25 @@ jobs:
- name: 📝 Code Formatting Check (Ruff) - name: 📝 Code Formatting Check (Ruff)
run: | run: |
echo "Checking code formatting..." echo "Checking code formatting..."
ruff format --check laborious/ tests/ ruff format --check orchestrator/ tests/
continue-on-error: false continue-on-error: false
- name: 🔎 Code Linting (Ruff) - name: 🔎 Code Linting (Ruff)
run: | run: |
echo "Running linting checks..." echo "Running linting checks..."
ruff check laborious/ tests/ ruff check orchestrator/ tests/
continue-on-error: false continue-on-error: false
- name: 🏷️ Type Checking (mypy) - name: 🏷️ Type Checking (mypy)
run: | run: |
echo "Running type checks..." echo "Running type checks..."
mypy laborious/ mypy orchestrator/
continue-on-error: true continue-on-error: true
- name: 🔒 Security Analysis (Bandit) - name: 🔒 Security Analysis (Bandit)
run: | run: |
echo "Running security analysis..." echo "Running security analysis..."
bandit -r laborious/ -ll -q bandit -r orchestrator/ -ll -q
continue-on-error: true continue-on-error: true
- name: 🧪 Run Tests with Pytest - name: 🧪 Run Tests with Pytest