From 201d215ea062cce6a519ca35d44acc0d3b74c9d3 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 23:03:04 +0000 Subject: [PATCH] CI: removed build dependency on test --- .gitea/workflows/ci.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 20ac52d..d8ec0a4 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -18,14 +18,16 @@ jobs: python-version: '3.10' - name: Install dependencies - run: python -m pip install --upgrade pip && python -m pip install -e . && python -m pip install pytest + run: | + python -m pip install --upgrade pip + python -m pip install -e . + python -m pip install pytest - name: Run tests run: python -m pytest tests/ -v build: runs-on: ubuntu-latest - needs: test steps: - uses: actions/checkout@v4 @@ -35,7 +37,9 @@ jobs: python-version: '3.10' - name: Install build dependencies - run: python -m pip install --upgrade pip && python -m pip install build + run: | + python -m pip install --upgrade pip + python -m pip install build - name: Build package run: python -m build