Skip to content
Draft
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
5 changes: 3 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ jobs:
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
soundness:
name: Soundness
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
uses: ahoppen/github-workflows/.github/workflows/soundness.yml@api-breakage-baseline
with:
api_breakage_check_allowlist_path: "Release Notes/api-breakages.txt"
api_breakage_check_allowlist_path: "api-breakages.txt"
api_breakage_check_baseline: "600.0.1"
docs_check_additional_arguments: "--disable-parameters-and-returns-validation"
verify_source_code:
name: Validate generated code
Expand Down
2 changes: 1 addition & 1 deletion Sources/SwiftDiagnostics/DiagnosticsFormatter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ public struct DiagnosticsFormatter {
/// - leadingText: text that is prefixed to the list of categories when
/// there is at least one category to print.
public func categoryFootnotes(
_ categories: [DiagnosticCategory],
_ categories: some Sequence<DiagnosticCategory>,
leadingText: String = "\n"
) -> String {
let categoriesInOrder = categories.compactMap { category in
Expand Down
Loading