File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 5
5
types : [opened, reopened, synchronize]
6
6
7
7
jobs :
8
+ validate_format_config :
9
+ name : Validate Format Config
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - name : Checkout repo
13
+ uses : actions/checkout@v4
14
+ - name : Install apt dependencies
15
+ run : sudo apt-get -qq update && sudo apt-get -qq -y install curl
16
+ - name : Compare against swift-mmio swift-format config
17
+ run : |
18
+ curl -sL https://raw.githubusercontent.com/apple/swift-mmio/refs/heads/main/.swift-format -o .swift-format-mmio
19
+ diff .swift-format .swift-format-mmio
20
+
8
21
tests :
9
22
name : Test
10
23
uses : swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
24
+
11
25
soundness :
12
26
name : Soundness
13
27
uses : swiftlang/github-workflows/.github/workflows/soundness.yml@main
16
30
license_header_check_enabled : false
17
31
# https://github.com/apple/swift-algorithms/issues/251
18
32
docs_check_enabled : false
19
- # https://github.com/apple/swift-algorithms/issues/252
20
- format_check_enabled : false
Original file line number Diff line number Diff line change 64
64
"UseWhereClausesInForLoops" : false,
65
65
"ValidateDocumentationComments" : true
66
66
},
67
- "spacesBeforeEndOfLineComments" : 2,
67
+ "spacesBeforeEndOfLineComments": 2,
68
68
"spacesAroundRangeFormationOperators" : false,
69
69
"tabWidth" : 2,
70
70
"version" : 1
You can’t perform that action at this time.
0 commit comments