From a3c35630541b2ccdfa94dcca101f8c3de13bba02 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 13:08:24 +0000 Subject: [PATCH] Simplified CI - basic pip install and pytest --- .gitea/workflows/ci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c052824..ca090bd 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -9,7 +9,10 @@ on: jobs: test: runs-on: ubuntu-latest - container: python:3.11-slim steps: - - name: Install package - run: pip install -e . pytest pytest-asyncio && python -m pytest tests/ -v \ No newline at end of file + - name: Install dependencies + run: | + pip install -e . pytest pytest-asyncio + - name: Run tests + run: | + python -m pytest tests/ -v \ No newline at end of file