From f9668f0b54d643b1423e811c7eb6da6dfa1d49d3 Mon Sep 17 00:00:00 2001 From: Joseph Duffy Date: Mon, 27 May 2024 18:34:46 +0100 Subject: [PATCH] Do not run tests on visionOS with Xcode 15.1 --- .github/workflows/tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 492c92a..bf9553a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -61,6 +61,10 @@ jobs: matrix: xcode: ["15.1", "15.3"] platform: ["macOS", "iOS", "tvOS", "watchOS", "macCatalyst", "visionOS"] + exclude: + # There are no visionOS simulators available on GitHub Actions using Xcode 15.1 + - xcode: "15.1" + platform: "visionOS" steps: - uses: actions/checkout@v4