mobile_nebula/.github/workflows/swiftfmt.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
492 B
YAML
Raw Normal View History

2025-02-13 22:23:37 +00:00
name: Swift format
on:
push:
branches:
- main
pull_request:
paths:
- '.github/workflows/swiftfmt.yml'
- '**.swift'
jobs:
swiftfmt:
name: Run swift format
runs-on: macos-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
show-progress: false
2025-02-13 22:48:35 +00:00
# Re-enable in follow-up PR that does the formatting.
# - name: Check formating
# run: swiftformat --lint . --reporter github-actions-log