Skip to content

Commit

Permalink
add github workflow to build mac and test with say
Browse files Browse the repository at this point in the history
  • Loading branch information
mzgoddard committed Jan 11, 2024
1 parent 97ef8e8 commit f3a20e8
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/mac.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: macos

on: [pull_request]

jobs:
build:
runs-on: macos-13
steps:
- run: |
cd src/macos/ATDriverGenericMacOS
xcodebuild
- run: |
pluginkit -e use -i com.bocoup.ATDriverGenericMacOS.ATDriverGenericMacOSExtension
defaults write com.apple.Accessibility SpeechVoiceIdentifierForLanguage '{2 = {en = "com.bocoup.ATDriverGenericMacOS.ATDriverGenericMacOSExtension.ATDriverGenericMacOSExtension";};}'
say hello
log show --process ATDriverGenericService | tail -n 10

0 comments on commit f3a20e8

Please sign in to comment.