Skip to content

WIP: macOS new UI

WIP: macOS new UI #84

Workflow file for this run

name: Swift Tests
on:
push:
branches: [main]
paths:
- "apple/InlineKit/**"
- "apple/InlineUI/**"
pull_request:
branches: [main]
paths:
- "apple/InlineKit/**"
- "apple/InlineUI/**"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Swift Tests
runs-on: macos-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Xcode version
run: sudo xcode-select -s /Applications/Xcode_26.0.app
- name: Swift Version
run: swift --version
- name: Xcode Version
run: xcodebuild -version
- name: Test InlineKit
working-directory: apple/InlineKit
run: swift test
- name: Test InlineUI
working-directory: apple/InlineUI
run: swift test