Skip to content

Update README.md

Update README.md #31

Workflow file for this run

name: Format
on:
workflow_dispatch:
push:
branches:
- main
jobs:
swift_format:
name: swift-format
runs-on: macos-11
steps:
- uses: actions/checkout@v2
- name: Tap
run: brew tap pointfreeco/formulae
- name: Install
run: brew install Formulae/swift-format@5.5
- name: Format
run: make format
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Run swift-format
branch: "main"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}