From 9f1fae72ba6621757a4f2973a0813c15c408da4d Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 22:03:27 +0000 Subject: [PATCH] Fix CI: push properly formatted YAML workflow --- .gitea/workflows/ci.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 0227bb1..4931aa7 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -17,10 +17,12 @@ jobs: python-version: '3.11' - name: Install dependencies - run: pip install -e ".[dev]" + run: | + pip install -e ".[dev]" - name: Run tests - run: pytest tests/ -v + run: | + pytest tests/ -v lint: runs-on: ubuntu-latest @@ -39,7 +41,8 @@ jobs: pip install ruff - name: Run linting - run: ruff check src/ + run: | + ruff check src/ build: runs-on: ubuntu-latest @@ -54,10 +57,12 @@ jobs: python-version: '3.11' - name: Install build dependencies - run: pip install build + run: | + pip install build - name: Build package - run: python -m build + run: | + python -m build - name: Upload artifacts uses: actions/upload-artifact@v4