Prevent decoding of empty nodes #171 #9
This file contains 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 | |
jobs: | |
swift_format: | |
name: swift format | |
runs-on: macos-15 | |
permissions: | |
contents: write | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Select Xcode 16.2 | |
run: sudo xcode-select -s /Applications/Xcode_16.2.app | |
- name: Run format.sh | |
run: | | |
chmod +x ./format.sh | |
./format.sh | |
- name: Commit format | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Run format.sh | |
branch: 'main' |