-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fb4c3c6
commit 41162f9
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
github: [mattmassicotte] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- 'README.md' | ||
- 'CODE_OF_CONDUCT.md' | ||
- '.editorconfig' | ||
- '.spi.yml' | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
test: | ||
name: Test | ||
runs-on: macOS-14 | ||
env: | ||
DEVELOPER_DIR: /Applications/Xcode_15.3.app/Contents/Developer | ||
strategy: | ||
matrix: | ||
destination: | ||
- "platform=macOS" | ||
- "platform=macOS,variant=Mac Catalyst" | ||
- "platform=iOS Simulator,name=iPhone 12" | ||
- "platform=tvOS Simulator,name=Apple TV" | ||
- "platform=watchOS Simulator,name=Apple Watch Series 6 (40mm)" | ||
- "platform=visionOS Simulator,name=Apple Vision Pro" | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Test platform ${{ matrix.destination }} | ||
run: set -o pipefail && xcodebuild -scheme Ligature -destination "${{ matrix.destination }}" test | xcbeautify |