From 12e3018523f546475c87929a2bdc612d39ef2172 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 12:30:56 +0000 Subject: [PATCH] Use checkout action and direct python setup --- .gitea/workflows/ci.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 2ef73f4..2492829 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -9,9 +9,10 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Setup Python - run: | - python3 --version - pip3 install -e . pytest pytest-asyncio - - name: Run tests - run: pytest tests/ -v + - uses: actions/checkout@v4 + - name: Setup Python + run: | + python3 --version + pip3 install -e . pytest pytest-asyncio + - name: Run tests + run: pytest tests/ -v