Skip to content

fix(monitor): Only switch input method for the frontmost app #12

fix(monitor): Only switch input method for the frontmost app

fix(monitor): Only switch input method for the frontmost app #12

Workflow file for this run

name: build
on:
pull_request:
# Cancel in-progress runs when a new commit supersedes them — no point
# building stale code while a newer push is already queued.
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: macos-14
timeout-minutes: 15
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Show toolchain
run: swift --version
- name: Build .app bundle
run: make build
- name: Verify bundle
run: |
test -x build/TermIMS.app/Contents/MacOS/TermIMS
test -f build/TermIMS.app/Contents/Info.plist
plutil -lint build/TermIMS.app/Contents/Info.plist
codesign --verify --verbose=2 build/TermIMS.app