Add privacy usage descriptions to Info.plist #37
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: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: macos-26 | |
| env: | |
| MISE_HTTP_TIMEOUT: 120 | |
| MISE_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - name: Mise cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.local/share/mise | |
| ~/.cache/mise | |
| key: ${{ runner.os }}-${{ runner.arch }}-mise-${{ hashFiles('mise.toml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-${{ runner.arch }}-mise- | |
| - run: brew install mise 2>/dev/null | |
| - run: mise install | |
| - name: Ghostty cache key | |
| run: | | |
| set -euo pipefail | |
| GHOSTTY_SHA=$(git -C ThirdParty/ghostty rev-parse HEAD) | |
| printf '%s\n' "GHOSTTY_SHA=$GHOSTTY_SHA" >> "$GITHUB_ENV" | |
| - name: Ghostty cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| Frameworks/GhosttyKit.xcframework | |
| Resources/ghostty | |
| Resources/terminfo | |
| key: ${{ runner.os }}-${{ runner.arch }}-ghostty-${{ env.GHOSTTY_SHA }} | |
| - name: Build ghostty | |
| run: | | |
| set -euo pipefail | |
| make build-ghostty-xcframework | |
| - run: make lint | |
| - run: make build-app | |
| - run: make test |