We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8556589 commit eab4d2cCopy full SHA for eab4d2c
.github/workflows/format.yml
@@ -1,16 +1,11 @@
1
name: Format
2
3
-# 실행 조건 = push + pull_reqeust
+# 실행 조건 = push
4
on:
5
push:
6
branches:
7
- - main
8
- develop
9
- pull_request:
10
- branches:
11
12
- - develop
13
-
+
14
# 기존 실행중인 work_flow 중지
15
concurrency:
16
group: format-${{ github.ref }}
@@ -26,13 +21,13 @@ jobs:
26
21
steps:
27
22
- uses: actions/checkout@v4
28
23
29
- - name: Select Xcode 16.2
30
- run: sudo xcode-select -s /Applications/Xcode_16.2.app
24
+ - name: Select Xcode 16.4
25
+ run: sudo xcode-select -s /Applications/Xcode_16.4.app
31
32
# swift-format 실행
33
# .swift 파일에 대해서만 실행
34
- name: Run swift-format
35
- run: xcrun swift format -irp
+ run: swift format -irp .
36
37
- uses: stefanzweifel/git-auto-commit-action@v5
38
with:
0 commit comments