Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: 🧪 Run Tests

permissions:
contents: read

on:
pull_request:
types: [opened, synchronize, reopened]
Expand All @@ -10,7 +13,7 @@ on:
jobs:

build:
runs-on: macos-14 # Apple Silicon Runner
runs-on: macos-15 # Apple Silicon Runner

steps:
- uses: actions/checkout@v4
Expand All @@ -21,7 +24,7 @@ jobs:
- name: Select latest Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '16.2'
xcode-version: '16.4'

- name: 🛠️ Run All Tests
run: |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ⚠️ 60 public changes detected ⚠️
# ⚠️ 57 public changes detected ⚠️
_Comparing `new_private` to `old_private`_
<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>
<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>

---
## `ReferencePackage`
Expand Down Expand Up @@ -33,12 +33,6 @@ public enum RawValueEnum: Swift.Equatable, Swift.Hashable, Swift.RawRepresentabl
}
```
```swift
public protocol ParentProtocol {
associatedtype Iterator: Swift.Collection
associatedtype ParentType: Swift.Equatable where Self.ParentType == Self.Iterator.Element
}
```
```swift
public protocol ParentProtocol<ParentType> {
associatedtype Iterator: Swift.Collection
associatedtype ParentType: Swift.Equatable where Self.ParentType == Self.Iterator.Element
Expand Down Expand Up @@ -303,12 +297,6 @@ public enum PublicEnumInExtensionOfCustomEnumThatIsOnlyAvailableInTheReferencePa
associatedtype AnotherAssociatedType: Swift.Strideable
```
```swift
associatedtype AnotherAssociatedType: Swift.Strideable
```
```swift
associatedtype CustomAssociatedType: Swift.Equatable
```
```swift
associatedtype CustomAssociatedType: Swift.Equatable
```
#### 🔀 Modified
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ⚠️ 51 public changes detected ⚠️
# ⚠️ 48 public changes detected ⚠️
_Comparing `new_public` to `old_public`_
<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>
<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>

---
## `ReferencePackage`
Expand Down Expand Up @@ -33,12 +33,6 @@ public enum RawValueEnum: Swift.Equatable, Swift.Hashable, Swift.RawRepresentabl
}
```
```swift
public protocol ParentProtocol {
associatedtype Iterator: Swift.Collection
associatedtype ParentType: Swift.Equatable where Self.ParentType == Self.Iterator.Element
}
```
```swift
public protocol ParentProtocol<ParentType> {
associatedtype Iterator: Swift.Collection
associatedtype ParentType: Swift.Equatable where Self.ParentType == Self.Iterator.Element
Expand Down Expand Up @@ -288,12 +282,6 @@ public enum PublicEnumInExtensionOfCustomEnumThatIsOnlyAvailableInTheReferencePa
associatedtype AnotherAssociatedType: Swift.Strideable
```
```swift
associatedtype AnotherAssociatedType: Swift.Strideable
```
```swift
associatedtype CustomAssociatedType: Swift.Equatable
```
```swift
associatedtype CustomAssociatedType: Swift.Equatable
```
#### 🔀 Modified
Expand Down
Loading