name: CI on: push: branches: [ main, master ] pull_request: branches: [ main, master ] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: python-version: '3.10' - name: Install dependencies run: | python -m pip install --upgrade pip python -m pip install -e . python -m pip install pytest - name: List test files run: | find tests -name "*.py" -type f | head -20 - name: Run tests run: python -m pytest tests/ -v --ignore=tests_testdatagen