-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWorkspace.swift
More file actions
29 lines (27 loc) · 1.24 KB
/
Workspace.swift
File metadata and controls
29 lines (27 loc) · 1.24 KB
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
import ProjectDescription
let allTestsTargets = Scheme(name: "AllTests",
shared: true,
hidden: false,
testAction: .targets([
TestableTarget(target: .project(path: "./Features/Exchanges",
target: "ExchangesTests")),
TestableTarget(target: .project(path: "./Tools/ACNetwork",
target: "ACNetworkTests"))
])
)
let workspace = Workspace(name: "AChallange",
projects: [
"App",
"Features/Exchanges",
"Tools/ACNetwork",
"Tools/Commons",
"Tools/UI",
],
schemes: [
allTestsTargets
],
additionalFiles: [
.glob(pattern: "./README.MD")
],
generationOptions: .options(renderMarkdownReadme: true)
)