Skip to content

Commit 382e66f

Browse files
committed
WIP: Test API breakage baseline
1 parent b9ae3b7 commit 382e66f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/pull_request.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ jobs:
1010
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
1111
soundness:
1212
name: Soundness
13-
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
13+
uses: ahoppen/github-workflows/.github/workflows/soundness.yml@api-breakage-baseline
1414
with:
15-
api_breakage_check_allowlist_path: "Release Notes/api-breakages.txt"
15+
api_breakage_check_allowlist_path: "api-breakages.txt"
16+
api_breakage_check_baseline: "600.0.1"
1617
docs_check_additional_arguments: "--disable-parameters-and-returns-validation"
1718
verify_source_code:
1819
name: Validate generated code

Sources/SwiftDiagnostics/DiagnosticsFormatter.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ public struct DiagnosticsFormatter {
367367
/// - leadingText: text that is prefixed to the list of categories when
368368
/// there is at least one category to print.
369369
public func categoryFootnotes(
370-
_ categories: [DiagnosticCategory],
370+
_ categories: some Sequence<DiagnosticCategory>,
371371
leadingText: String = "\n"
372372
) -> String {
373373
let categoriesInOrder = categories.compactMap { category in

0 commit comments

Comments
 (0)