Skip to content

Exclude appkey function key codes from other platforms #28

Exclude appkey function key codes from other platforms

Exclude appkey function key codes from other platforms #28

Workflow file for this run

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
timeout-minutes: 30
runs-on: macOS-26
env:
DEVELOPER_DIR: /Applications/Xcode_26.4.app
strategy:
matrix:
destination:
- "platform=macOS"
- "platform=macOS,variant=Mac Catalyst"
- "platform=iOS Simulator,name=iPhone 16e,OS=26.2"
- "platform=tvOS Simulator,name=Apple TV"
- "platform=watchOS Simulator,name=Apple Watch Series 11 (42mm)"
- "platform=visionOS Simulator,name=Apple Vision Pro"
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Test platform ${{ matrix.destination }}
run: set -o pipefail && xcodebuild -scheme KeyCodes -destination "${{ matrix.destination }}" test | xcbeautify