Add zh-HK translations for Localizable.strings in package "Syntax"
#3877
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: Test | |
| on: [push, pull_request] | |
| jobs: | |
| macOS: | |
| runs-on: macos-26 | |
| env: | |
| DEVELOPER_DIR: /Applications/Xcode_26.2.app | |
| steps: | |
| - name: Show environments | |
| run: | | |
| sw_vers | |
| xcodebuild -version | |
| swift --version | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Unit Test for EditorCore | |
| run: | | |
| swift test --package-path Packages/EditorCore | |
| - name: Unit Test for MacUI | |
| run: | | |
| swift test --package-path Packages/MacUI | |
| - name: Unit Test for SyntaxMap | |
| run: | | |
| swift test --package-path Packages/SyntaxMap | |
| - name: Unit Test for CotEditor | |
| run: | | |
| xcodebuild test -scheme CotEditor CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -skipPackagePluginValidation |