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