File tree 1 file changed +28
-27
lines changed
1 file changed +28
-27
lines changed Original file line number Diff line number Diff line change 1
- name : Format
2
-
3
- on :
4
- push :
5
- branches :
6
- - main
7
-
8
- concurrency :
9
- group : format-${{ github.ref }}
10
- cancel-in-progress : true
11
-
12
- jobs :
13
- swift_format :
14
- name : swift-format
15
- runs-on : macos-15
16
- permissions :
17
- contents : write
18
- steps :
19
- - uses : actions/checkout@v4
20
- - name : Select Xcode 16.2
21
- run : sudo xcode-select -s /Applications/Xcode_16.2.app
22
- - name : Format
23
- run : make format
24
- - uses : stefanzweifel/git-auto-commit-action@v5
25
- with :
26
- commit_message : Run swift-format
27
- branch : ' main'
1
+ # NB: Compatible swift-format requires Xcode 16.3, not yet available on GitHub
2
+ # name: Format
3
+ #
4
+ # on:
5
+ # push:
6
+ # branches:
7
+ # - main
8
+ #
9
+ # concurrency:
10
+ # group: format-${{ github.ref }}
11
+ # cancel-in-progress: true
12
+ #
13
+ # jobs:
14
+ # swift_format:
15
+ # name: swift-format
16
+ # runs-on: macos-15
17
+ # permissions:
18
+ # contents: write
19
+ # steps:
20
+ # - uses: actions/checkout@v4
21
+ # - name: Select Xcode 16.3
22
+ # run: sudo xcode-select -s /Applications/Xcode_16.3.app
23
+ # - name: Format
24
+ # run: make format
25
+ # - uses: stefanzweifel/git-auto-commit-action@v5
26
+ # with:
27
+ # commit_message: Run swift-format
28
+ # branch: 'main'
You can’t perform that action at this time.
0 commit comments