docs: add open-source readiness and community templates #2
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| macos-check: | |
| runs-on: macos-14 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install XcodeGen | |
| run: brew install xcodegen | |
| - name: Generate Xcode project | |
| run: xcodegen generate | |
| - name: Run unit tests | |
| run: | | |
| /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild \ | |
| -project Matcha.xcodeproj \ | |
| -scheme MatchaTests \ | |
| -sdk macosx \ | |
| test \ | |
| -destination 'platform=macOS' |