Skip to content
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/swiftformat.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: SwiftFormat Check

on:
pull_request:
branches: [ main ]

jobs:
swiftformat:
name: Code Formatting Check
runs-on: macos-26

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install swiftformat
run: brew install swiftformat

- name: Check code formatting
run: swiftformat --lint .
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: SwiftLint
name: SwiftLint Check

on:
pull_request:
Expand Down
Loading