From 7102e553b7fb76f039d4a397a196acf95fb2b704 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 22:06:01 +0000 Subject: [PATCH] CI with Python setup and tests --- .gitea/workflows/ci.yml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index bfd62bf..253480c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -5,5 +5,18 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Hello - run: echo "Hello World" \ No newline at end of file + - name: Checkout + run: pwd && ls -la + + - name: Setup Python + run: | + python3 -m pip install --upgrade pip + python3 --version + + - name: Install dependencies + run: | + pip3 install -r requirements.txt + pip3 install pytest + + - name: Run tests + run: pytest3 tests/ -v \ No newline at end of file