Skip to content

Commit 944b73e

Browse files
authored
Merge pull request #125 from Adyen/update-tests-for-xcode-16
Updating tests to use Xcode 16.4
2 parents 375ec6e + c388842 commit 944b73e

File tree

3 files changed

+9
-30
lines changed

3 files changed

+9
-30
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: 🧪 Run Tests
22

3+
permissions:
4+
contents: read
5+
36
on:
47
pull_request:
58
types: [opened, synchronize, reopened]
@@ -10,7 +13,7 @@ on:
1013
jobs:
1114

1215
build:
13-
runs-on: macos-14 # Apple Silicon Runner
16+
runs-on: macos-15 # Apple Silicon Runner
1417

1518
steps:
1619
- uses: actions/checkout@v4
@@ -21,7 +24,7 @@ jobs:
2124
- name: Select latest Xcode
2225
uses: maxim-lobanov/setup-xcode@v1
2326
with:
24-
xcode-version: '16.2'
27+
xcode-version: '16.4'
2528

2629
- name: 🛠️ Run All Tests
2730
run: |

Tests/IntegrationTests/Resources/expected-reference-changes-swift-interface-private.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# ⚠️ 60 public changes detected ⚠️
1+
# ⚠️ 57 public changes detected ⚠️
22
_Comparing `new_private` to `old_private`_
3-
<table><tr><td>❇️</td><td><b>34 Additions</b></td></tr><tr><td>🔀</td><td><b>22 Modifications</b></td></tr><tr><td>❌</td><td><b>4 Removals</b></td></tr></table>
3+
<table><tr><td>❇️</td><td><b>31 Additions</b></td></tr><tr><td>🔀</td><td><b>22 Modifications</b></td></tr><tr><td>❌</td><td><b>4 Removals</b></td></tr></table>
44

55
---
66
## `ReferencePackage`
@@ -33,12 +33,6 @@ public enum RawValueEnum: Swift.Equatable, Swift.Hashable, Swift.RawRepresentabl
3333
}
3434
```
3535
```swift
36-
public protocol ParentProtocol {
37-
associatedtype Iterator: Swift.Collection
38-
associatedtype ParentType: Swift.Equatable where Self.ParentType == Self.Iterator.Element
39-
}
40-
```
41-
```swift
4236
public protocol ParentProtocol<ParentType> {
4337
associatedtype Iterator: Swift.Collection
4438
associatedtype ParentType: Swift.Equatable where Self.ParentType == Self.Iterator.Element
@@ -303,12 +297,6 @@ public enum PublicEnumInExtensionOfCustomEnumThatIsOnlyAvailableInTheReferencePa
303297
associatedtype AnotherAssociatedType: Swift.Strideable
304298
```
305299
```swift
306-
associatedtype AnotherAssociatedType: Swift.Strideable
307-
```
308-
```swift
309-
associatedtype CustomAssociatedType: Swift.Equatable
310-
```
311-
```swift
312300
associatedtype CustomAssociatedType: Swift.Equatable
313301
```
314302
#### 🔀 Modified

Tests/IntegrationTests/Resources/expected-reference-changes-swift-interface-public.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# ⚠️ 51 public changes detected ⚠️
1+
# ⚠️ 48 public changes detected ⚠️
22
_Comparing `new_public` to `old_public`_
3-
<table><tr><td>❇️</td><td><b>31 Additions</b></td></tr><tr><td>🔀</td><td><b>16 Modifications</b></td></tr><tr><td>❌</td><td><b>4 Removals</b></td></tr></table>
3+
<table><tr><td>❇️</td><td><b>28 Additions</b></td></tr><tr><td>🔀</td><td><b>16 Modifications</b></td></tr><tr><td>❌</td><td><b>4 Removals</b></td></tr></table>
44

55
---
66
## `ReferencePackage`
@@ -33,12 +33,6 @@ public enum RawValueEnum: Swift.Equatable, Swift.Hashable, Swift.RawRepresentabl
3333
}
3434
```
3535
```swift
36-
public protocol ParentProtocol {
37-
associatedtype Iterator: Swift.Collection
38-
associatedtype ParentType: Swift.Equatable where Self.ParentType == Self.Iterator.Element
39-
}
40-
```
41-
```swift
4236
public protocol ParentProtocol<ParentType> {
4337
associatedtype Iterator: Swift.Collection
4438
associatedtype ParentType: Swift.Equatable where Self.ParentType == Self.Iterator.Element
@@ -288,12 +282,6 @@ public enum PublicEnumInExtensionOfCustomEnumThatIsOnlyAvailableInTheReferencePa
288282
associatedtype AnotherAssociatedType: Swift.Strideable
289283
```
290284
```swift
291-
associatedtype AnotherAssociatedType: Swift.Strideable
292-
```
293-
```swift
294-
associatedtype CustomAssociatedType: Swift.Equatable
295-
```
296-
```swift
297285
associatedtype CustomAssociatedType: Swift.Equatable
298286
```
299287
#### 🔀 Modified

0 commit comments

Comments
 (0)