Skip to content

Add title bar for code blocks in the Demo app CodeSyntaxHighlightView… #79

Add title bar for code blocks in the Demo app CodeSyntaxHighlightView…

Add title bar for code blocks in the Demo app CodeSyntaxHighlightView… #79

Workflow file for this run

name: Format
on:
push:
branches:
- main
jobs:
format:
name: swift-format
runs-on: macos-12
steps:
- uses: actions/checkout@v2
- name: Select Xcode 14.2
run: sudo xcode-select -s /Applications/Xcode_14.2.app
- name: Tap
run: brew tap pointfreeco/formulae
- name: Install
run: brew install Formulae/swift-format@5.7
- 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 }}