We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7de623a commit 575b579Copy full SHA for 575b579
.github/workflows/build.yaml
@@ -13,10 +13,6 @@ jobs:
13
'tvOS Simulator,name=Apple TV',
14
'watchOS Simulator,name=Apple Watch Series 8 (41mm)'
15
]
16
- xcode: [
17
- '15.2',
18
- '15.3'
19
- ]
20
steps:
21
- uses: actions/checkout@v4
22
- uses: ruby/setup-ruby@v1
@@ -25,5 +21,4 @@ jobs:
25
- name: Run tests
26
env:
27
23
DESTINATION: platform=${{ matrix.destination }}
28
- XCODE_VERSION: ${{ matrix.xcode }}
29
24
run: bundle exec fastlane test_ci
fastlane/Fastfile
@@ -130,8 +130,7 @@ platform :ios do
130
end
131
132
before_all do |lane|
133
- xcode_version = ENV["XCODE_VERSION"] || "15.3"
134
- xcodes(version: xcode_version, select_for_current_build_only: true)
+ xcodes(version: "15.2", select_for_current_build_only: true)
135
136
137
after_all do |lane|
0 commit comments