Improve PunctuationKey #175
This file contains 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, pull_request, release] | |
# env: | |
# DEVELOPER_DIR: /Applications/Xcode_16.app/Contents/Developer | |
jobs: | |
build_preparing: | |
name: Build Preparing | |
runs-on: macos-15 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Swift Build Preparing | |
run: swift build | |
working-directory: ./Preparing | |
build_coreime: | |
name: Build CoreIME | |
runs-on: macos-15 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Swift Build CoreIME | |
run: swift build | |
working-directory: ./CoreIME | |
build_typeduck: | |
name: Build TypeDuck | |
runs-on: macos-15 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build TypeDuck Project | |
run: set -o pipefail && xcodebuild clean build -project TypeDuck.xcodeproj -scheme TypeDuck -configuration Debug -destination "platform=macOS" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO ONLY_ACTIVE_ARCH=NO | xcpretty |