Fix CI: push properly formatted YAML workflow
Some checks failed
CI / test (push) Failing after 14s
CI / build (push) Has been skipped
CI / lint (push) Successful in 13s

This commit is contained in:
2026-03-22 22:03:27 +00:00
parent d48db96329
commit 9f1fae72ba

View File

@@ -17,10 +17,12 @@ jobs:
python-version: '3.11' python-version: '3.11'
- name: Install dependencies - name: Install dependencies
run: pip install -e ".[dev]" run: |
pip install -e ".[dev]"
- name: Run tests - name: Run tests
run: pytest tests/ -v run: |
pytest tests/ -v
lint: lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -39,7 +41,8 @@ jobs:
pip install ruff pip install ruff
- name: Run linting - name: Run linting
run: ruff check src/ run: |
ruff check src/
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -54,10 +57,12 @@ jobs:
python-version: '3.11' python-version: '3.11'
- name: Install build dependencies - name: Install build dependencies
run: pip install build run: |
pip install build
- name: Build package - name: Build package
run: python -m build run: |
python -m build
- name: Upload artifacts - name: Upload artifacts
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4