Re-trigger CI with single-line commands
Some checks failed
CI / test (push) Failing after 11s
CI / build (push) Has been skipped

This commit is contained in:
2026-03-22 23:02:21 +00:00
parent 19953defdc
commit 7d6a5734c8

View File

@@ -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