We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84afb88 commit 7e8bc30Copy full SHA for 7e8bc30
1 file changed
.github/workflows/ci.yml
@@ -22,10 +22,10 @@ jobs:
22
runs-on: ubuntu-latest
23
steps:
24
- uses: actions/checkout@v4
25
- - uses: jidicula/clang-format-action@v4
26
- with:
27
- clang-format-version: '18'
28
- check-path: 'taskflowlite'
+ - name: Install clang-format
+ run: sudo apt-get install -y -qq clang-format-18
+ - name: Run clang-format
+ run: find taskflowlite -name '*.hpp' -o -name '*.cpp' | xargs clang-format-18 --dry-run --Werror
29
30
# ============================================================================
31
# 编译 + 测试矩阵(OS × BuildType × Sanitizer)
0 commit comments