feat: リアルタイム音声録音時の自動スクロール機能を追加 (#89) #77
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} |