From 452285f62d2e3a716f3ad4d0903b2fe2126d0a4e Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 17:05:34 +0000 Subject: [PATCH] fix: CI with just Python steps, no apt-get --- .gitea/workflows/ci.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c831530..e1e083a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -8,5 +8,15 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Hello - run: echo "Hello World" \ No newline at end of file + - name: Check Python + run: python3 --version + - name: Check pip + run: pip3 --version + - name: Install deps + run: pip3 install -e ".[dev]" + - name: Lint + run: ruff check src/ + - name: Type check + run: mypy src/ + - name: Test + run: pytest tests/ -v \ No newline at end of file