forked from gonzalezreal/swift-markdown-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
31 lines (24 loc) · 735 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
test-macos:
xcodebuild test \
-scheme MarkdownUI \
-destination platform="macOS"
test-macos-maccatalyst:
xcodebuild test \
-scheme MarkdownUI \
-destination platform="macOS,variant=Mac Catalyst"
test-ios:
xcodebuild test \
-scheme MarkdownUI \
-destination platform="iOS Simulator,name=iPhone SE (3rd generation)"
test-tvos:
xcodebuild test \
-scheme MarkdownUI \
-destination platform="tvOS Simulator,name=Apple TV"
test-watchos:
xcodebuild test \
-scheme MarkdownUI \
-destination platform="watchOS Simulator,name=Apple Watch SE (40mm) (2nd generation)"
test: test-macos test-macos-maccatalyst test-ios test-tvos test-watchos
format:
swift format --in-place --recursive .
.PHONY: format