Final CI workflow - clean and minimal
Some checks failed
CI / test (push) Failing after 13s
CI / build (push) Has been skipped

This commit is contained in:
2026-03-22 23:01:17 +00:00
parent 14eed9ec87
commit 19953defdc

View File

@@ -23,9 +23,30 @@ jobs:
python -m pip install -e . python -m pip install -e .
python -m pip install pytest python -m pip install pytest
- name: List test files
run: |
find tests -name "*.py" -type f | head -20
- name: Run tests - name: Run tests
run: python -m pytest tests/ -v --ignore=tests_testdatagen run: python -m pytest tests/ -v
build:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
python -m pip install build
- name: Build package
run: python -m build
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/