Skip to content

Commit c44c025

Browse files
committed
Fix: test.yml 파일 수정
1 parent e2f8f4c commit c44c025

1 file changed

Lines changed: 5 additions & 9 deletions

File tree

.github/workflows/build_test.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,10 @@ jobs:
1616
- name: Set Xcode version
1717
run: sudo xcode-select -s /Applications/Xcode_16.4.app
1818

19-
- name: Install Mise and Tuist
19+
- name: Install Tuist
2020
run: |
21-
curl -fsSL https://mise.jdx.dev/install.sh | sh
22-
export PATH="$HOME/.local/bin:$PATH"
23-
mise install tuist
24-
mise use -g tuist
21+
curl -Ls https://install.tuist.io | bash
22+
echo "$HOME/.tuist/bin" >> $GITHUB_PATH
2523
2624
- name: Generate xcconfig
2725
run: |
@@ -32,9 +30,8 @@ jobs:
3230

3331
- name: Generate Xcode project with Tuist
3432
run: |
35-
export PATH="$HOME/.local/bin:$PATH"
36-
mise exec -- tuist install
37-
mise exec -- tuist generate --no-open
33+
tuist install
34+
tuist generate --no-open
3835
3936
- name: Build with xcodebuild
4037
run: |
@@ -45,4 +42,3 @@ jobs:
4542
-sdk iphonesimulator \
4643
-destination 'platform=iOS Simulator,name=iPhone 16,OS=18.4' \
4744
clean build | xcpretty
48-

0 commit comments

Comments
 (0)