From c55650a4186549e932e00f40fda5dc8294491a5e Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 13:10:13 +0000 Subject: [PATCH] Try CI without checkout action - let Gitea auto checkout --- .gitea/workflows/ci.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index a2ee5da..1e94eb0 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -11,8 +11,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + run: | + echo "Checking out code..." + ls -la + pwd - name: Install - run: pip install -e . pytest pytest-asyncio + run: | + pip install -e . pytest pytest-asyncio - name: Test - run: python -m pytest tests/ -v \ No newline at end of file + run: | + python -m pytest tests/ -v \ No newline at end of file