Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wendyliga committed Jan 15, 2024
1 parent c6c81d5 commit 3c4a650
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Select Xcode ${{ inputs.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ inputs.xcode }}.app
- name: Run tests
run: make test-example ${{ inputs.device }}
run: make test-example DEVICE='${{ inputs.device }}'

lint_podspec:
runs-on: ${{ inputs.os }}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ test-example:
xcodebuild test \
-project Examples.xcodeproj \
-scheme Examples \
-destination "platform=iOS Simulator,name=$1"
-destination "platform=iOS Simulator,name=$(DEVICE)"
-derivedDataPath ../derivedData \
| xcpretty \
&& rm -rf ../derivedData
Expand Down

0 comments on commit 3c4a650

Please sign in to comment.