Skip to content

Commit

Permalink
Merge pull request #59 from tdeleon/26-add-support-for-visionos
Browse files Browse the repository at this point in the history
Add support for visionOS
  • Loading branch information
tdeleon authored Jan 30, 2024
2 parents d89be2e + d6eeb70 commit f1a0ba6
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@ name: Build & Test
on: [push]

jobs:

build-xcode:
strategy:
fail-fast: false
matrix:
os: [macos-14]
destination: ["iOS Simulator", "macOS", "tvOS Simulator", "watchOS Simulator", "visionOS Simulator"]

runs-on: ${{ matrix.os }}

steps:
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_15.2.app

- name: Checkout
uses: actions/checkout@v4

- name: Test
run: xcodebuild -scheme Relax-Package -destination 'platform= ${{ matrix.destination }}' test

build:
strategy:
fail-fast: false
Expand Down

0 comments on commit f1a0ba6

Please sign in to comment.