From 41a900037d7167de6c4f759f55a760e098033057 Mon Sep 17 00:00:00 2001 From: user Date: Sat, 21 Feb 2026 17:25:35 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20drop=20container=20job=20=E2=80=94=20act?= =?UTF-8?q?ions/checkout=20needs=20node=20on=20runner?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit python:3.13-slim lacks node, which actions/checkout@v4 requires. Run test job on bare runner with setup-python instead. Co-Authored-By: Claude Opus 4.6 --- .gitea/workflows/ci.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 1cba5ee..2b724b5 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -7,10 +7,11 @@ on: jobs: test: runs-on: ubuntu-latest - container: - image: python:3.13-slim steps: - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.13' - run: pip install pyyaml ruff pytest - run: ruff check src/ tests/ - run: PYTHONPATH=src pytest tests/ -v