Rework framework layout to not require helper script #1
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 | |
| on: [push, pull_request] | |
| jobs: | |
| build-macos: | |
| name: Build for macOS | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: maxim-lobanov/setup-xcode@v1 | |
| - name: Build and test | |
| run: xcodebuild -project EmbeddedPython.xcodeproj -scheme EmbeddedPython -destination 'platform=macOS' build |