-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
26 lines (25 loc) · 765 Bytes
/
Package.swift
File metadata and controls
26 lines (25 loc) · 765 Bytes
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
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "ActionsErrorDemo",
products: [
.library(name: "ActionsErrorDemo", targets: ["ActionsErrorDemo"]),
],
dependencies: [
.package(url: "https://github.com/macdrevx/ActionsErrorDemoDependency.git", .branchItem("main"))
],
targets: [
.target(
name: "ActionsErrorDemo",
dependencies: ["ActionsErrorDemoDependency"]
),
.testTarget(
name: "ActionsErrorDemoTests",
dependencies: ["ActionsErrorDemo"],
resources: [
.copy("Snapshot Images/envelope.png"),
.copy("Snapshot Images/geometrycollection.png"),
]
),
]
)