Add Claude Code GitHub Workflow #89
Workflow file for this run
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: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: macOS-13 | |
| env: | |
| DEVELOPER_DIR: /Applications/Xcode_15.0.1.app/Contents/Developer | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Run iOS tests | |
| run: make test-ios | |
| - name: Run tvOS tests | |
| run: make test-tvos |