Allow specifying extra arguments to CMake format #32
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: Style | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install format dependencies | |
run: pip3 install cmake_format==0.6.11 pyyaml | |
- name: Check source style | |
run: cmake-format --check ./CMakeLists.txt ./cmake-format.cmake |