feat: v2.1.0 — Transferable Search (warm-start memory + Pareto-front … #54
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: CI/CD | |
| on: | |
| push: | |
| branches: [main, develop] | |
| pull_request: | |
| branches: [main, develop] | |
| jobs: | |
| backend-tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ['3.10', '3.11'] | |
| 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 core dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install torch torchvision --index-url https://download.pytorch.org/whl/cpu | |
| pip install numpy>=1.24.0 scipy>=1.10.0 tqdm>=4.65.0 | |
| pip install pytest | |
| - name: Run sanity tests | |
| run: pytest tests/test_sanity.py -v -x | |
| - name: Run edge case tests | |
| run: pytest tests/test_edge_cases.py -v -x | |
| - name: Run reproducibility tests | |
| run: pytest tests/test_reproducibility.py -v -x | |
| # Validates published benchmark numbers against quality thresholds (instant, JSON-only). | |
| # Heavy NAS suites (test_compress, test_market_validation) run locally — too slow for CI. | |
| - name: Validate market benchmark results | |
| run: pytest tests/test_benchmark_market.py -v -x | |
| release: | |
| runs-on: ubuntu-latest | |
| if: startsWith(github.ref, 'refs/tags/') | |
| needs: [backend-tests] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Create Release | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| generate_release_notes: true |