Remove cascade for now; add Docker/CI and README fix list.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
orohi
2026-07-26 06:56:43 +03:00
co-authored by Cursor
parent 7230697b7f
commit ff9269dd33
13 changed files with 251 additions and 1105 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
- name: Install dependencies
run: |
+78
View File
@@ -0,0 +1,78 @@
name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Validate translation JSON
run: |
python - <<'PY'
import json, pathlib, sys
root = pathlib.Path("translations")
errors = []
for path in sorted(root.glob("*.json")):
try:
json.loads(path.read_text(encoding="utf-8"))
print(f"OK {path}")
except Exception as exc:
errors.append(f"{path}: {exc}")
if errors:
print("\n".join(errors))
sys.exit(1)
PY
- name: Compile Python sources
run: python -m compileall -q app.py telegram_bot.py managers db
- name: Import smoke check
env:
DATABASE_URL: postgresql://amnezia:amnezia@127.0.0.1:5432/amnezia_panel
SECRET_KEY: ci-smoke-secret
run: |
python - <<'PY'
import ast
from pathlib import Path
# Syntax-only parse of entrypoints (full import needs live Postgres)
for name in ("app.py", "telegram_bot.py"):
ast.parse(Path(name).read_text(encoding="utf-8"), filename=name)
print(f"parsed {name}")
PY
docker:
runs-on: ubuntu-latest
needs: check
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build image
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
push: false
tags: amnezia-panel:ci
cache-from: type=gha
cache-to: type=gha,mode=max
+52
View File
@@ -0,0 +1,52 @@
name: Docker Image
on:
push:
branches: [main, master]
tags:
- "v*"
workflow_dispatch:
permissions:
contents: read
packages: write
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/${{ github.repository }}
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=raw,value=latest,enable={{is_default_branch}}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GHCR
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max