benchmark: make partition dispatch opt-in via create_benchmark_model … #14
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: main | |
| concurrency: | |
| group: ${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| run-tests: | |
| name: Run tests on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| python-version: | |
| - '3.14' | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install pylcm (unreleased feature branch required) | |
| run: >- | |
| pip install "pylcm @ | |
| git+https://github.com/OpenSourceEconomics/pylcm.git@feature/h-consumes-dag-outputs" | |
| - name: Install aca-model with test deps | |
| run: pip install -e . pytest pdbp | |
| - name: Run pytest | |
| run: pytest tests |