From c3ffbdbf7b7bc46b25660c84c71c083bdfecffca Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 01:58:06 +0000 Subject: [PATCH] fix: restore proper CI workflow --- .gitea/workflows/ci.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5c0a646..fb314c2 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -23,13 +23,10 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -e . + pip install -e ".[dev]" - - name: Show Python version - run: python --version + - name: Run tests + run: pytest tests/ -v --tb=short - - name: List installed packages - run: pip list - - - name: Run tests with verbose output - run: pytest tests/ -v --tb=long 2>&1 || true + - name: Check code formatting + run: ruff check env_pro/