Skip to content
Open
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Formatting repository
b48ffb6d541ae3665c4ee4e705fd2969be748f6b
4 changes: 3 additions & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
tests:
name: Test
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
needs: [soundness, space-format-check]
with:
linux_os_versions: '["amazonlinux2", "bookworm", "noble", "jammy", "rhel-ubi9"]'
linux_pre_build_command: ./.github/scripts/prebuild.sh
Expand All @@ -38,6 +39,7 @@ jobs:
cmake-smoke-test:
name: cmake-smoke-test
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
needs: [soundness, space-format-check]
with:
linux_os_versions: '["noble"]'
linux_pre_build_command: SKIP_ANDROID=1 INSTALL_CMAKE=1 ./.github/scripts/prebuild.sh
Expand All @@ -57,7 +59,7 @@ jobs:
with:
license_header_check_project_name: "Swift"
api_breakage_check_enabled: false
format_check_enabled: false
format_check_enabled: true

space-format-check:
name: Space format check
Expand Down
1 change: 1 addition & 0 deletions .licenseignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
.swift-version
CODEOWNERS
Package.swift
.git-blame-ignore-revs
19 changes: 11 additions & 8 deletions .swift-format
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
{
"version": 1,
"lineLength": 10000,
"indentation": {
"spaces": 4
},
"rules": {
},
"tabWidth": 4
"version": 1,
"lineLength": 10000,
"indentation": {
"spaces": 4
},
"lineBreakBeforeEachArgument": true,
"maximumBlankLines" : 1,
"multiElementCollectionTrailingCommas" : true,
"rules": {
},
"tabWidth": 4
}
Loading
Loading