From f77c896ca3b49a5586ae1864da71db89eec384b3 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 12:30:46 +0000 Subject: [PATCH] Ultra minimal CI workflow --- .gitea/workflows/ci.yml | 23 ++++++++--------------- 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5c6120c..2ef73f4 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -2,23 +2,16 @@ name: CI on: push: - branches: [ main ] + branches: + - main jobs: test: runs-on: ubuntu-latest steps: - - name: Checkout - run: | - echo "Checking current directory..." - pwd - ls -la - - name: Check Python - run: | - python3 --version - which python3 - - name: Install - run: | - pip3 install -e . pytest pytest-asyncio - - name: Run tests - run: pytest tests/ -v --tb=short + - name: Setup Python + run: | + python3 --version + pip3 install -e . pytest pytest-asyncio + - name: Run tests + run: pytest tests/ -v