[Building Sync-ups Tutorial] fixes in "Navigating to sync-up detail" … #1347
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Format | |
on: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: format-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
swift_format: | |
name: swift-format | |
runs-on: macos-15 | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Select Xcode 16.2 | |
run: sudo xcode-select -s /Applications/Xcode_16.2.app | |
- name: Format | |
run: make format | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Run swift-format | |
branch: 'main' |