Merge pull request #410 from nmm0/409-check-preconditions-in-extents-… #222
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 Single Header | |
| on: | |
| push: | |
| branches: | |
| - stable | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: sudo apt-get install python3 | |
| - run: ./make_single_header.py ./include/experimental/mdarray > /tmp/mdspan.hpp | |
| - uses: actions/checkout@v6 | |
| with: | |
| ref: single-header | |
| - run: mv /tmp/mdspan.hpp mdspan.hpp | |
| - uses: stefanzweifel/git-auto-commit-action@v7 | |
| with: | |
| branch: single-header | |
| commit_message: Update single header build. |