Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into async-swift-syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
stephencelis committed Sep 12, 2023
2 parents 336452e + 696b86a commit 7de6fa5
Show file tree
Hide file tree
Showing 40 changed files with 953 additions and 1,227 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Format

on:
push:
branches:
- main

concurrency:
group: format-${{ github.ref }}
cancel-in-progress: true

jobs:
swift_format:
name: swift-format
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: Xcode Select
run: sudo xcode-select -s /Applications/Xcode_14.3.1.app
- name: Install
run: brew install swift-format
- 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 }}
Loading

0 comments on commit 7de6fa5

Please sign in to comment.