From 9f99fa17e4e02fab6c7354c1e674af4222bd34e3 Mon Sep 17 00:00:00 2001 From: Alexa Amundson <118287761+blackboxprogramming@users.noreply.github.com> Date: Mon, 16 Mar 2026 12:21:55 -0500 Subject: [PATCH] =?UTF-8?q?cleanup:=20remove=20unused=20workflow=20?= =?UTF-8?q?=E2=80=94=20Actions=20disabled,=20CI=20runs=20on=20Gitea?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/core-ci.yml | 71 ----------------------------------- 1 file changed, 71 deletions(-) delete mode 100644 .github/workflows/core-ci.yml diff --git a/.github/workflows/core-ci.yml b/.github/workflows/core-ci.yml deleted file mode 100644 index 5d285cc..0000000 --- a/.github/workflows/core-ci.yml +++ /dev/null @@ -1,71 +0,0 @@ -name: Core CI - -on: - pull_request: - paths: - - 'backend/app/**' - - 'backend/requirements.txt' - - 'backend/Dockerfile' - - 'backend/alembic/**' - - '!backend/app/routers/**' - - '!backend/tests/**' - push: - branches: [main, develop] - paths: - - 'backend/app/**' - - 'backend/requirements.txt' - - '!backend/app/routers/**' - - '!backend/tests/**' - -jobs: - core-checks: - name: Core Module Checks - 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.11' - cache: 'pip' - - - name: Install dependencies - run: | - cd backend - pip install -r requirements.txt - pip install flake8 black mypy - - - name: Check Python formatting (Black) - run: | - cd backend - black --check app/ - - - name: Lint with flake8 - run: | - cd backend - flake8 app/ --count --select=E9,F63,F7,F82 --show-source --statistics - flake8 app/ --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - - - name: Type check with mypy - run: | - cd backend - mypy app/ --ignore-missing-imports || true - - - name: Validate database models - run: | - cd backend - python -c "from app.database import Base; from app.models import *; print('Models validated')" - - - name: Check for security issues - run: | - pip install bandit safety - cd backend - bandit -r app/ -ll - safety check --file requirements.txt || true - - - name: Summary - run: | - echo "✅ Core CI checks completed"