We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1022b8f commit e9bc9c6Copy full SHA for e9bc9c6
Makefile
@@ -4,6 +4,7 @@
4
SWIFT_BUILD=swift build
5
SWIFT_CLEAN=swift package clean
6
SWIFT_BUILD_DIR=.build
7
+SWIFT_TEST=swift test
8
CONFIGURATION=release
9
10
# docker config
@@ -20,6 +21,10 @@ SWIFT_SOURCES=\
20
21
22
all:
23
$(SWIFT_BUILD) -c $(CONFIGURATION)
24
+
25
+# Cannot test in `release` configuration?!
26
+test:
27
+ $(SWIFT_TEST)
28
29
clean :
30
$(SWIFT_CLEAN)
Package.swift
@@ -16,9 +16,9 @@ let package = Package(
16
17
dependencies: [
18
.package(url: "https://github.com/Macro-swift/Macro.git",
19
- from: "0.1.2"),
+ from: "0.5.0"),
.package(url: "https://github.com/Macro-swift/MacroExpress.git",
- from: "0.1.0")
+ from: "0.5.0")
],
targets: [
0 commit comments