Add "matexp" solver to nmodl #1107
Workflow file for this run
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: Build NEURON Python wheels for CI | |
| concurrency: | |
| # Don't cancel on master, creating a PR when a push workflow is already going will cancel the push workflow in favour of the PR workflow | |
| group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/master' && github.run_id || github.event.number && github.head_ref || github.ref_name }} | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build-test: | |
| name: Build and test NEURON Python wheels | |
| uses: ./.github/workflows/wheels-template.yml | |
| with: | |
| platform: ${{ matrix.os }} | |
| python_version: ${{ matrix.python_version }} | |
| commit: ${{ github.sha }} | |
| strategy: | |
| matrix: | |
| os: ['macos-15-intel', 'ubuntu-24.04'] | |
| python_version: ['3.9', '3.14'] | |
| merge: | |
| name: Merge artifacts and post artifacts URL | |
| runs-on: ubuntu-latest | |
| needs: [build-test] | |
| steps: | |
| - name: Merge Artifacts | |
| id: merge-artifacts | |
| uses: actions/upload-artifact/merge@v4 | |
| with: | |
| delete-merged: true | |
| name: wheels | |
| pattern: wheels-* | |
| - name: Create comment with URL to artifact | |
| if: github.event.pull_request && github.event.pull_request.head.repo.full_name == github.repository | |
| uses: peter-evans/create-or-update-comment@v4 | |
| with: | |
| issue-number: ${{ github.event.pull_request.number }} | |
| body: | | |
| ✔️ ${{ github.event.pull_request.head.sha }} -> [artifacts URL](${{ steps.merge-artifacts.outputs.artifact-url }}) |