Delete docs/media/Figure_1.png #97
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: MAC BUILD (macOS 14) | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| build-macos: | |
| runs-on: macos-14 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| # Your Makefile handles brew installs on Darwin; we keep it as-is. | |
| - name: Install dependencies | |
| run: | | |
| make clean | |
| make install | |
| - name: Run tests | |
| run: make test |