Hot-path simplify: cancel -> together (~200x speedup at L=3) + experi… #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Regression Tests | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "exact_growth*.py" | |
| - "nbody/exact_growth_nbody.py" | |
| - "3d/exact_growth_nd.py" | |
| - "requirements.txt" | |
| - "test_regression.py" | |
| - "registry/**" | |
| - "scripts/registry_*.py" | |
| - ".github/workflows/**" | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 45 | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.12"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: pip install -r requirements.txt | |
| - name: Run regression tests | |
| run: python test_regression.py | |
| registry-lint: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install registry dependencies | |
| run: pip install pyyaml jsonschema | |
| - name: Validate registry/experiments.yaml | |
| run: python -m registry.loader --check |