From 82e5e16cb5b3e4333427ad609efdff774682ea80 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 12:50:38 +0000 Subject: [PATCH] Test Python and pip install --- .gitea/workflows/ci.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 87126b0..7cea055 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -6,5 +6,12 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Echo test - run: echo "Hello World" \ No newline at end of file + - name: Test Python + run: | + set -x + python3 --version + pip3 --version + - name: Install pytest + run: | + set -x + pip3 install pytest \ No newline at end of file