File tree Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change 7
7
branches : ["main"]
8
8
9
9
jobs :
10
- lint :
11
- name : Lint
10
+ validate_format_config :
11
+ name : Validate Format Config
12
12
runs-on : ubuntu-latest
13
- container : swift:6.0-jammy
14
-
15
13
steps :
16
14
- name : Checkout repo
17
15
uses : actions/checkout@v4
18
16
19
17
- name : Install apt dependencies
20
- run : apt-get -qq update && apt-get -qq -y install curl
18
+ run : sudo apt-get -qq update && sudo apt-get -qq -y install curl
21
19
22
20
- name : Compare against swift-mmio swift-format config
23
21
run : |
24
- curl -sL https://raw.githubusercontent.com/apple/swift-mmio/refs/heads/main/SupportingFiles/Tools/swift-format/ .swift-format -o .swift-format-mmio
22
+ curl -sL https://raw.githubusercontent.com/apple/swift-mmio/refs/heads/main/.swift-format -o .swift-format-mmio
25
23
diff .swift-format .swift-format-mmio
26
24
27
- - name : Lint
28
- run : swift-format lint --recursive --strict .
25
+ soundness :
26
+ name : Soundness
27
+ uses : swiftlang/github-workflows/.github/workflows/soundness.yml@main
28
+ with :
29
+ api_breakage_check_enabled : false # this repo doesn't vend any API
30
+ license_header_check_enabled : false # feature: https://github.com/swiftlang/github-workflows/issues/78
31
+ license_header_check_project_name : " Swift.org" # bug: https://github.com/swiftlang/github-workflows/issues/76
You can’t perform that action at this time.
0 commit comments