Skip to content

Commit f3a9cda

Browse files
committed
Update ios.yml
1 parent 972b8e5 commit f3a9cda

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.github/workflows/ios.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,22 @@ on:
88
jobs:
99
build:
1010
runs-on: macos-latest
11-
1211
steps:
12+
- uses: maxim-lobanov/setup-xcode@v1
13+
with:
14+
xcode-version: '16.1.0'
15+
1316
- name: Checkout repository
1417
uses: actions/checkout@v4
1518

1619
- name: Install Tuist
1720
run: |
18-
mise install tuist
21+
brew tap tuist/tuist
22+
brew install --formula [email protected]
23+
24+
- name: Verify Tuist installation
25+
run: |
26+
tuist --help
1927
2028
- name: Generate Project with Tuist
2129
run: |
@@ -31,4 +39,4 @@ jobs:
3139
-workspace ModernCleanArchtecture.xcworkspace \
3240
-scheme Example \
3341
-configuration Debug \
34-
-destination 'platform=iOS Simulator,name=iPhone 14,OS=latest'
42+
-destination 'platform=iOS Simulator,name=iPhone 15,OS=latest'

Tuist/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version: 5.9
1+
// swift-tools-version: 6.0
22
import PackageDescription
33

44
#if TUIST

0 commit comments

Comments
 (0)