From 455fee08f67b0d3d650c18c9774cf4a4ab74c815 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 12:40:23 +0000 Subject: [PATCH] CI with single command step --- .gitea/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 2796870..6e2284c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -5,9 +5,8 @@ on: push jobs: test: runs-on: ubuntu-latest - container: python:3.11-slim steps: - - name: Install - run: pip install -e . pytest pytest-asyncio - - name: Run tests - run: pytest tests/ -v \ No newline at end of file + - name: Install and test + run: | + set -x + pip3 install -e /app && pip3 install pytest pytest-asyncio && pytest /app/tests/ -v \ No newline at end of file