decomposer: fix validation failure for Migrate the kab_ingestion domain models, ports, GitHub SCM connector, and SharePoint CMS connector into the repository's app/ package.; Wire the migrated ingestion components into the agent application entry point, card, settings, triggers, governance, publication, and validation layers.; Populate every remaining placeholder file with working application, package, test, dependency, and Kubernetes content.; Verify the migrated agent and completed repository end to end.
Some checks failed
quality-gates / verify (push) Failing after 7s
Some checks failed
quality-gates / verify (push) Failing after 7s
This commit is contained in:
35
.gitea/workflows/quality-gates.yml
Normal file
35
.gitea/workflows/quality-gates.yml
Normal file
@@ -0,0 +1,35 @@
|
||||
name: quality-gates
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
pull_request:
|
||||
branches:
|
||||
- '**'
|
||||
|
||||
jobs:
|
||||
verify:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out source
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.11'
|
||||
cache: pip
|
||||
- name: Install project and pinned quality tools
|
||||
shell: bash
|
||||
run: |
|
||||
set -euo pipefail
|
||||
python -m pip install --upgrade pip
|
||||
if [[ -f requirements.txt ]]; then python -m pip install -r requirements.txt; fi
|
||||
if [[ -f requirements-dev.txt ]]; then python -m pip install -r requirements-dev.txt; fi
|
||||
python -m pip install ruff==0.6.9 mypy==1.11.2 pytest==8.3.3
|
||||
- name: Lint
|
||||
run: python -m ruff check .
|
||||
- name: Type check
|
||||
run: python -m mypy app
|
||||
- name: Test
|
||||
run: python -m pytest -q
|
||||
Reference in New Issue
Block a user