From 3a49e5d1e5c1c726c34344fd23b8ec2cab138657 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 15:25:30 +0000 Subject: [PATCH] fix: retry CI with standard actions syntax --- .gitea/workflows/ci.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index ad0bb7c..9c4153a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -10,15 +10,13 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Checkout + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: "3.11" + - name: Install dependencies run: | - git clone https://gitea.com/${{ repo }} . || true - - name: Setup Python - run: | - apt-get update && apt-get install -y python3 python3-pip - - name: Install deps - run: | - pip install --upgrade pip + python -m pip install --upgrade pip pip install -e ".[dev]" - name: Run tests run: |