Progress on a MultiIndicatorView type; seperate attributed/plain editing #30
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 | |
| paths-ignore: | |
| - 'README.md' | |
| - 'CODE_OF_CONDUCT.md' | |
| - '.editorconfig' | |
| - '.spi.yml' | |
| pull_request: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: macOS-15 | |
| env: | |
| DEVELOPER_DIR: /Applications/Xcode_26.0.app | |
| strategy: | |
| matrix: | |
| destination: | |
| - "platform=macOS" | |
| - "platform=macOS,variant=Mac Catalyst" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Test platform ${{ matrix.destination }} | |
| run: set -o pipefail && xcodebuild -scheme IBeam -destination "${{ matrix.destination }}" test | xcbeautify |