Switch to scikit-build-core, build wheels with bundled OpenBLAS #2
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: In-place editable build | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| submodules: 'recursive' | |
| - name: Install build requirements | |
| run: sudo apt-get update --quiet --yes && sudo apt-get install --quiet --yes liblapack-dev | |
| - name: Build | |
| run: ./dev-tools/inplace-editable-build.bash |