From f8dc25ca6cfd00448a6126494d2bcaf0f2cf3a7b Mon Sep 17 00:00:00 2001 From: NikolaiMadlener Date: Mon, 18 Nov 2024 12:22:03 +0100 Subject: [PATCH] change destination of test job in build workflow to iOS 18 --- .github/workflows/build.yml | 2 +- Package.swift | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9f105e484..38a5e4e22 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: runs-on: macos-14 strategy: matrix: - destination: ['platform=iOS\ Simulator,OS=17.4,name=iPhone\ 15\ Pro'] + destination: ['platform=iOS\ Simulator,OS=18.0,name=iPhone\ 16\ Pro'] scheme: ['ResearchKit'] name: ${{ matrix.scheme }} Unit Tests steps: diff --git a/Package.swift b/Package.swift index c8353c079..5e95044d9 100644 --- a/Package.swift +++ b/Package.swift @@ -53,9 +53,6 @@ let package = Package( .target(name: "ResearchKitUI"), .target(name: "ResearchKitActiveTask", condition: .when(platforms: [.iOS])) ], - swiftSettings: [ - swiftConcurrency - ], plugins: [] + swiftLintPlugin() ) ]