mirror of
https://github.com/softinio/Fishee.git
synced 2025-08-31 18:06:42 -07:00
Have a separate workflow for test with correct file paths
This commit is contained in:
parent
b3ab1e325f
commit
477af99eab
4 changed files with 39 additions and 41 deletions
|
@ -10,17 +10,13 @@ let package = Package(
|
|||
],
|
||||
dependencies: [
|
||||
.package(
|
||||
url: "https://github.com/apple/swift-argument-parser.git", .upToNextMajor(from: "1.5.0")),
|
||||
.package(url: "https://github.com/duckdb/duckdb-swift", .upToNextMinor(from: .init(1, 1, 0))),
|
||||
url: "https://github.com/apple/swift-argument-parser.git", .upToNextMajor(from: "1.5.0"))
|
||||
],
|
||||
targets: [
|
||||
// Targets are the basic building blocks of a package, defining a module or a test suite.
|
||||
// Targets can depend on other targets in this package and products from dependencies.
|
||||
.executableTarget(
|
||||
name: "Fishee",
|
||||
dependencies: [
|
||||
.product(name: "ArgumentParser", package: "swift-argument-parser"),
|
||||
.product(name: "DuckDB", package: "duckdb-swift"),
|
||||
.product(name: "ArgumentParser", package: "swift-argument-parser")
|
||||
],
|
||||
path: "Sources"
|
||||
),
|
||||
|
@ -31,6 +27,7 @@ let package = Package(
|
|||
resources: [
|
||||
.copy("Resources/fish_history_test.txt"),
|
||||
.copy("Resources/fish_history_test_2.txt"),
|
||||
.process("TestPlan.xctestplan"),
|
||||
]
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue