From 02537ec3541da6499d3314829c378b8c4e6c3dcb Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 12:05:21 +0000 Subject: [PATCH] Revert to simple CI without container --- .gitea/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 6e6a124..c024e7f 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -7,12 +7,12 @@ on: jobs: test: runs-on: ubuntu-latest - container: python:3.11-slim steps: - uses: actions/checkout@v4 - - name: Install dependencies - run: | - pip install pytest pytest-asyncio click cryptography pygments rich zeroconf - pip install -e . + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + - name: Install + run: pip install -e . && pip install pytest pytest-asyncio - name: Run tests run: pytest tests/ -v \ No newline at end of file