From bf33a4473844960058afdf614a0177a0d3986fa2 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 21:13:10 +0000 Subject: [PATCH] Full CI workflow --- .gitea/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 866bf45..bbed374 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -10,5 +10,8 @@ jobs: - uses: actions/setup-python@v5 with: python-version: '3.11' - - name: Install pytest - run: pip install pytest + - name: Install dependencies + run: | + pip install pytest pyyaml click rich jinja2 jsonschema prompt_toolkit tomli + - name: Run tests + run: pytest tests/ -v --tb=short