Skip to content

Commit c237a5e

Browse files
committed
Merge branch 'main' into custom-certificate-verification
2 parents f7681db + d56f742 commit c237a5e

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/pull_request.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
api_breakage_check_container_image: "swift:6.2-noble"
1616
format_check_container_image: "swift:6.2-noble"
17-
license_header_check_project_name: "SwiftHTTPServer"
17+
license_header_check_project_name: "Swift HTTP Server"
1818

1919
unit-tests:
2020
name: Unit tests
@@ -24,8 +24,8 @@ jobs:
2424
linux_6_0_enabled: false
2525
linux_6_1_enabled: false
2626
# linux_6_1_arguments_override: "-Xswiftc -warnings-as-errors --explicit-target-dependency-import-check error"
27-
linux_6_2_enabled: false
28-
# linux_6_2_arguments_override: "-Xswiftc -warnings-as-errors --explicit-target-dependency-import-check error"
27+
linux_6_2_enabled: true
28+
linux_6_2_arguments_override: "-Xswiftc -warnings-as-errors --explicit-target-dependency-import-check error"
2929
linux_nightly_next_arguments_override: "--explicit-target-dependency-import-check error"
3030
linux_nightly_main_arguments_override: "--explicit-target-dependency-import-check error"
3131

@@ -36,7 +36,7 @@ jobs:
3636
linux_5_10_enabled: false
3737
linux_6_0_enabled: false
3838
linux_6_1_enabled: false
39-
linux_6_2_enabled: false
39+
linux_6_2_enabled: true
4040

4141
static-sdk:
4242
name: Static SDK
@@ -49,3 +49,4 @@ jobs:
4949
linux_5_10_enabled: false
5050
linux_6_0_enabled: false
5151
linux_6_1_enabled: false
52+
linux_6_2_enabled: true

Sources/Middleware/MiddlewareBuilder.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/// }
2222
/// ```
2323
@resultBuilder
24-
public struct MiddlewareChainBuilder {
24+
public struct MiddlewareChainBuilder: Sendable {
2525
/// Builds a middleware chain from a single middleware component.
2626
///
2727
/// This is the base case for the result builder pattern, handling a single middleware.

0 commit comments

Comments
 (0)