Skip to content

Added Tim Oliver to organizer list (#20) #11

Added Tim Oliver to organizer list (#20)

Added Tim Oliver to organizer list (#20) #11

Workflow file for this run

name: Format
on:
push:
branches:
- main
jobs:
swift_format:
name: swift-format
runs-on: macOS-14
steps:
- uses: actions/checkout@v4
- name: Xcode Select
run: sudo xcode-select -s /Applications/Xcode_15.2.app
- name: Install
run: brew install swift-format
- name: Format
run: make format
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "[ci skip] Run swift-format"
branch: "main"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}