Skip to content

build(deps): bump github.com/apple/swift-syntax from 510.0.1 to 510.0.2 #13

build(deps): bump github.com/apple/swift-syntax from 510.0.1 to 510.0.2

build(deps): bump github.com/apple/swift-syntax from 510.0.1 to 510.0.2 #13

Workflow file for this run

name: Swift Format
on:
pull_request:
branches:
- main
jobs:
swift-format:
runs-on: macos-14
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Xcode select
run: sudo xcode-select -s '/Applications/Xcode_15.2.app/Contents/Developer'
- name: Install Swift Format
run: brew install swift-format
- name: Swift Format
run: swift format --in-place --recursive ./Package.swift ./Sources ./Tests --configuration swift-format.json
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Run swift-format