From d07874314949aae598034c76497d80cc08e69f1c Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 13:09:37 +0000 Subject: [PATCH] Use explicit checkout action and simplified pip commands --- .gitea/workflows/ci.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index f49fa28..a2ee5da 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -10,13 +10,9 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Checkout code - run: | - ls -la - pwd - - 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 + - name: Checkout + uses: actions/checkout@v4 + - name: Install + run: pip install -e . pytest pytest-asyncio + - name: Test + run: python -m pytest tests/ -v \ No newline at end of file