Fall back to /bin/zsh for non-POSIX login shells (#100) #12
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: ci | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: macos-26 | |
| permissions: | |
| contents: read | |
| id-token: write | |
| env: | |
| MISE_HTTP_TIMEOUT: 120 | |
| MISE_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - uses: ./.github/actions/setup-macos | |
| - run: make lint | |
| - run: make inspect-dependencies | |
| - run: make build-app | |
| env: | |
| XCODEBUILD_FLAGS: -showBuildTimingSummary | |
| - run: make test |