fix: 修复在 Win 下编译不通过的问题;优化处理逻辑;修复多语言的支持;修补遗漏的功能; #11
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: Check CMake Formatting | |
on: [push, pull_request] | |
jobs: | |
format-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: cmake-format lint | |
uses: neg-c/cmake-format-action@v0.1.1 | |
with: | |
inplace: true |