fix windows build #1426
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: Cmake Format Checker | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Format CMake files | |
id: cmake-format | |
uses: PuneetMatharu/cmake-format-lint-action@v1.0.0 | |
with: | |
args: --check | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_user_name: cmake-format-bot | |
commit_message: 'Automated commit of cmake-format changes.' |