add ci and release #1
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build-and-test: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Select Xcode version 26.3 | |
| run: | | |
| sudo xcode-select --switch /Applications/Xcode_26.3.app | |
| - name: Build | |
| run: | | |
| xcodebuild build \ | |
| -project AmorphousMemoryMark/AmorphousMemoryMark.xcodeproj \ | |
| -scheme AmorphousMemoryMark \ | |
| -destination 'platform=macOS' \ | |
| CODE_SIGN_IDENTITY="-" \ | |
| CODE_SIGNING_REQUIRED=NO \ | |
| CODE_SIGNING_ALLOWED=NO | |
| - name: Test | |
| run: | | |
| xcodebuild test \ | |
| -project AmorphousMemoryMark/AmorphousMemoryMark.xcodeproj \ | |
| -scheme AmorphousMemoryMark \ | |
| -destination 'platform=macOS' \ | |
| CODE_SIGN_IDENTITY="-" \ | |
| CODE_SIGNING_REQUIRED=NO \ | |
| CODE_SIGNING_ALLOWED=NO |