From f4ef2b48a4cf8857a4e3ae8d9dbb8e6c8ccf495c Mon Sep 17 00:00:00 2001 From: xiaoxia Date: Mon, 29 Jun 2026 00:10:37 +0800 Subject: [PATCH] =?UTF-8?q?fix(ci):=20=E4=BF=AE=E5=A4=8D=20tests.yml=20-?= =?UTF-8?q?=20=E7=A7=BB=E9=99=A4=E4=B8=8D=E5=AD=98=E5=9C=A8=E7=9A=84=20Doc?= =?UTF-8?q?ker=20=E9=95=9C=E5=83=8F=EF=BC=8C=E6=94=B9=E7=94=A8=E4=B8=BB?= =?UTF-8?q?=E6=9C=BA=E8=BF=90=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - runs-on 改为 runtime-builder(匹配 runner labels) - 移除 container: xiaoxia-ci-python:3.12(镜像不存在) - Python 依赖在步骤中直接安装 --- .gitea/workflows/tests.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/tests.yml b/.gitea/workflows/tests.yml index 9391ad158..ec36eab30 100644 --- a/.gitea/workflows/tests.yml +++ b/.gitea/workflows/tests.yml @@ -8,9 +8,7 @@ on: jobs: test: - runs-on: ubuntu-latest - container: - image: xiaoxia-ci-python:3.12 + runs-on: runtime-builder steps: - name: Checkout code @@ -61,9 +59,7 @@ jobs: PYTHONPATH="$PWD/apps/api:$PWD" python -m pytest tests/unit -q lint: - runs-on: ubuntu-latest - container: - image: xiaoxia-ci-python:3.12 + runs-on: runtime-builder steps: - name: Checkout code