From 0fd7dfc25168c972c8c865ea0993447bedf791bc Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 22:03:25 +0000 Subject: [PATCH] Minimal CI workflow without actions --- .gitea/workflows/ci.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 1ad5567..743ae53 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -1,20 +1,19 @@ name: CI - on: [push, pull_request] jobs: test: runs-on: ubuntu-latest - container: python:3.11-slim steps: - - name: Checkout code - uses: actions/checkout@v4 + - name: Setup Python + run: | + python3 -m pip install --upgrade pip + python3 --version - name: Install dependencies run: | - pip install --upgrade pip - pip install -r requirements.txt - pip install pytest + pip3 install -r requirements.txt + pip3 install pytest - name: Run tests - run: pytest tests/ -v \ No newline at end of file + run: pytest3 tests/ -v \ No newline at end of file