Triton/.github/workflows/swiftformat.yml
Otavio Cordeiro ee174ab836 Add SwiftLint
2026-01-14 12:30:53 -03:00

20 lines
362 B
YAML

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 .