Skip to content

Commit d7fd9a8

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

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

.github/workflows/ios.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,23 @@ on:
88
jobs:
99
build:
1010
runs-on: macos-latest
11+
steps:
12+
- uses: maxim-lobanov/setup-xcode@v1
13+
with:
14+
xcode-version: '16.1.0'
1115

1216
steps:
1317
- name: Checkout repository
1418
uses: actions/checkout@v4
1519

1620
- name: Install Tuist
1721
run: |
18-
mise install tuist
22+
brew tap tuist/tuist
23+
brew install --formula [email protected]
24+
25+
- name: Verify Tuist installation
26+
run: |
27+
tuist --help
1928
2029
- name: Generate Project with Tuist
2130
run: |
@@ -31,4 +40,4 @@ jobs:
3140
-workspace ModernCleanArchtecture.xcworkspace \
3241
-scheme Example \
3342
-configuration Debug \
34-
-destination 'platform=iOS Simulator,name=iPhone 14,OS=latest'
43+
-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)