File tree 3 files changed +41
-2
lines changed
Tests/AssociatedObjectTests
3 files changed +41
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ paths-ignore :
8
+ - README.md
9
+ - LICENSE
10
+ pull_request :
11
+ paths-ignore :
12
+ - README.md
13
+ - LICENSE
14
+ workflow_dispatch :
15
+
16
+ permissions :
17
+ contents : read
18
+
19
+ env :
20
+ DEVELOPER_DIR : /Applications/Xcode_15.0.app
21
+
22
+ jobs :
23
+ build :
24
+ name : Build & Test
25
+ runs-on : macos-13
26
+ steps :
27
+ - name : Checkout
28
+ uses : actions/checkout@v4
29
+
30
+ - name : Select Xcode 15
31
+ run : sudo xcode-select -s /Applications/Xcode_15.0.app
32
+
33
+ - name : Build
34
+ run : swift build
35
+
36
+ - name : Test
37
+ run : swift test
Original file line number Diff line number Diff line change @@ -40,6 +40,10 @@ let package = Package(
40
40
name: " AssociatedObjectTests " ,
41
41
dependencies: [
42
42
" AssociatedObject " ,
43
+ . product( name: " SwiftSyntax " , package : " swift-syntax " ) ,
44
+ . product( name: " SwiftSyntaxMacros " , package : " swift-syntax " ) ,
45
+ . product( name: " SwiftCompilerPlugin " , package : " swift-syntax " ) ,
46
+ . product( name: " SwiftSyntaxBuilder " , package : " swift-syntax " ) ,
43
47
. product( name: " SwiftSyntaxMacrosTestSupport " , package : " swift-syntax " )
44
48
]
45
49
) ,
Original file line number Diff line number Diff line change @@ -111,7 +111,6 @@ final class PatternBindingSyntaxTests: XCTestCase {
111
111
)
112
112
113
113
binding. getter = newGetter
114
- print ( binding. description)
115
114
XCTAssertEqual ( newGetter. description, binding. getter? . description)
116
115
117
116
/* getter only */
@@ -191,7 +190,6 @@ final class PatternBindingSyntaxTests: XCTestCase {
191
190
)
192
191
193
192
binding. willSet = newWillSet
194
- print ( binding. description)
195
193
XCTAssertEqual ( newWillSet. description, binding. willSet? . description)
196
194
}
197
195
You can’t perform that action at this time.
0 commit comments