Update LeXtudio.UnoPropertyGrid package version to 0.2.0 and update p… #146
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: IME Placement CI (macOS) | |
| on: | |
| push: | |
| branches: [ master, main ] | |
| pull_request: | |
| branches: [ master, main ] | |
| jobs: | |
| ime-placement: | |
| name: IME Placement Runtime Tests | |
| runs-on: macos-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| submodules: recursive | |
| - name: Setup .NET SDK | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '10.0.x' | |
| include-prerelease: true | |
| - name: Setup Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.x' | |
| - name: Make scripts executable | |
| run: | | |
| chmod +x scripts/run_ime_diag.sh | |
| - name: Run IME diagnostics and comparator | |
| env: | |
| UNOEDIT_DEBUG_IME: '1' | |
| run: | | |
| bash scripts/run_ime_diag.sh | |
| - name: Upload logs (always) | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ime-logs | |
| path: | | |
| /tmp/unoedit_ime.log | |
| /tmp/unoedit_runtime_tests.xml |