fix: update project_options to v0.36.4 + ci: add MacOS 14, 13, AppleClang + fix: fix fmt unicode issue on Windows #116
Workflow file for this run
This file contains 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: auto-clang-format | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DoozyX/[email protected] | |
with: | |
source: '.' | |
exclude: './third_party ./external' | |
extensions: 'h,cpp,hpp' | |
clangFormatVersion: 16 | |
inplace: True | |
- uses: EndBug/add-and-commit@v9 | |
with: | |
author_name: Clang Robot | |
author_email: [email protected] | |
message: ':art: Committing clang-format changes' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |