ci: restore gitea workflows
This commit is contained in:
@@ -0,0 +1,72 @@
|
|||||||
|
name: Nexus CI/CD
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main, develop]
|
||||||
|
pull_request:
|
||||||
|
branches: [main]
|
||||||
|
|
||||||
|
env:
|
||||||
|
PYTHON_VERSION: "3.12"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
# ── CI: Test ──
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Setup Python ${{ env.PYTHON_VERSION }}
|
||||||
|
uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: ${{ env.PYTHON_VERSION }}
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
pip install --upgrade pip
|
||||||
|
pip install -r requirements.txt
|
||||||
|
pip install pytest pytest-asyncio aiosqlite coverage ruff mypy
|
||||||
|
|
||||||
|
- name: Lint (ruff)
|
||||||
|
run: ruff check server/ tests/
|
||||||
|
|
||||||
|
- name: Type check (mypy)
|
||||||
|
run: mypy server/ --ignore-missing-imports
|
||||||
|
continue-on-error: true # Type errors don't block deployment yet
|
||||||
|
|
||||||
|
- name: Run tests with coverage
|
||||||
|
run: |
|
||||||
|
coverage run -m pytest tests/ -v --tb=short
|
||||||
|
coverage report --fail-under=50
|
||||||
|
coverage xml
|
||||||
|
|
||||||
|
- name: Upload coverage report
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: coverage-report
|
||||||
|
path: coverage.xml
|
||||||
|
|
||||||
|
# ── CD: Deploy ──
|
||||||
|
deploy:
|
||||||
|
needs: test # Only deploy if tests pass
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: github.ref == 'refs/heads/main' # Only deploy from main branch
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Deploy to production server
|
||||||
|
uses: appleboy/ssh-action@v1
|
||||||
|
with:
|
||||||
|
host: ${{ secrets.DEPLOY_HOST }}
|
||||||
|
username: ${{ secrets.DEPLOY_USER }}
|
||||||
|
key: ${{ secrets.DEPLOY_SSH_KEY }}
|
||||||
|
script: |
|
||||||
|
cd /www/wwwroot/nexus
|
||||||
|
git pull origin main
|
||||||
|
pip install -r requirements.txt
|
||||||
|
# Restart Python backend (Supervisor/systemd)
|
||||||
|
supervisorctl restart nexus
|
||||||
|
# PHP changes are picked up automatically (no restart needed)
|
||||||
|
echo "Nexus deployed successfully at $(date)"
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
name: Nexus Pre-commit Checks
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: ["*"]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
quick-check:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: "3.12"
|
||||||
|
- run: pip install ruff
|
||||||
|
- name: Quick lint
|
||||||
|
run: ruff check server/ --select=E,F,W --diff
|
||||||
Reference in New Issue
Block a user