Skip to content

Commit 3de79c2

Browse files
committed
Updated README
1 parent 407ecaf commit 3de79c2

1 file changed

Lines changed: 9 additions & 4 deletions

File tree

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,16 @@ jobs:
123123
target: iOS
124124
- name: Build
125125
run: |
126-
xcodebuild build -workspace "$WORKSPACEPATH" \
127-
-scheme "$SCHEME" -destination "generic/platform=iOS"
126+
xcodebuild build \
127+
-workspace "$WORKSPACEPATH" \
128+
-scheme "$SCHEME" \
129+
-destination "generic/platform=iOS"
128130
- name: Unit Test
129-
run: xcodebuild test -workspace "$WORKSPACEPATH" \
130-
-scheme "$SCHEME" -destination "platform=iOS Simulator,id=$DESTID"
131+
run: |
132+
xcodebuild test \
133+
-workspace "$WORKSPACEPATH" \
134+
-scheme "$SCHEME" \
135+
-destination "platform=iOS Simulator,id=$DESTID"
131136
env:
132137
DESTID: ${{ steps.prep-sim.outputs.id }}
133138
```

0 commit comments

Comments
 (0)