From 6114c66aed190bf777e01c63f36983ea6d88c09f Mon Sep 17 00:00:00 2001 From: root Date: Fri, 17 Apr 2026 17:38:03 +0800 Subject: [PATCH] chore: remove Gitea CI workflow --- .gitea/workflows/ci.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .gitea/workflows/ci.yml diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml deleted file mode 100644 index 7491e0d..0000000 --- a/.gitea/workflows/ci.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: CI - -on: - push: - branches: - - main - pull_request: - branches: - - main - workflow_dispatch: - -jobs: - lint-and-compile: - # Prefer local Gitea runner labels to avoid pending/cancelled jobs. - runs-on: self-hosted - timeout-minutes: 15 - steps: - - name: Show environment - run: | - pwd - ls -la - python3 --version - - - name: Install dependencies - run: | - python3 -m pip install --upgrade pip - python3 -m pip install -r requirements.txt - - - name: Compile Python files - run: | - python3 -m py_compile app/*.py