mirror of
https://github.com/DefinedNet/mobile_nebula.git
synced 2025-02-21 18:45:28 +00:00
22 lines
430 B
YAML
22 lines
430 B
YAML
|
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
|
||
|
|
||
|
- name: Check formating
|
||
|
run: swiftformat --lint . --reporter github-actions-log
|