From 7d6a5734c8d4977c7782fc56cd133fa2c583f778 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 23:02:21 +0000 Subject: [PATCH] Re-trigger CI with single-line commands --- .gitea/workflows/ci.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index e0a0d3a..20ac52d 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -18,10 +18,7 @@ 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 @@ -38,9 +35,7 @@ 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