Skip to content

Commit b33a506

Browse files
committed
add Xcode setup step to macOS GitHub workflows
1 parent 94f5988 commit b33a506

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/mac.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ jobs:
5353
- uses: actions/checkout@v4
5454
with:
5555
submodules: recursive
56+
- name: Install Xcode
57+
uses: maxim-lobanov/setup-xcode@v1
58+
with:
59+
xcode-version: 'latest'
5660
- name: Setup environment
5761
run: |
5862
brew update-reset
@@ -94,6 +98,10 @@ jobs:
9498
runs-on: macOS-latest
9599
steps:
96100
- uses: actions/checkout@v4
101+
- name: Install Xcode
102+
uses: maxim-lobanov/setup-xcode@v1
103+
with:
104+
xcode-version: 'latest'
97105
- name: Setup environment
98106
run: |
99107
brew update-reset
@@ -156,6 +164,10 @@ jobs:
156164
runs-on: macOS-latest
157165
steps:
158166
- uses: actions/checkout@v4
167+
- name: Install Xcode
168+
uses: maxim-lobanov/setup-xcode@v1
169+
with:
170+
xcode-version: 'latest'
159171
- name: Setup environment
160172
run: |
161173
brew update-reset

0 commit comments

Comments
 (0)