mirror of
https://github.com/MrKai77/Loop.git
synced 2026-03-28 15:07:35 +00:00
20 lines
379 B
YAML
20 lines
379 B
YAML
name: Lint
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/swiftformat.yml'
|
|
- '.swiftformat.yml'
|
|
- '**/*.swift'
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: ⬇️ Checkout repository
|
|
uses: actions/checkout@v5
|
|
|
|
- name: 🎨 SwiftFormat
|
|
run: swiftformat --lint . --reporter github-actions-log
|