chore(deps): update com_github_nelhage_rules_boost digest to 2a7a2ad #760
Workflow file for this run
This file contains hidden or 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: [ main ] | |
pull_request: | |
jobs: | |
formatting: | |
name: formatting | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: install cmake-format | |
run: pip install cmakelang==0.6.13 | |
- uses: actions/checkout@v4 | |
- name: clang-format | |
run: git ls-files -z | grep -zE '\.(cc|h)$' | xargs -P 2 -n 50 -0 clang-format -i | |
- name: cmake-format | |
run: > | |
git ls-files -z | grep -zE '((^|/)CMakeLists\.txt|\.cmake)$' | | |
xargs -P 2 -n 1 -0 /home/runner/.local/bin/cmake-format -i | |
- name: check-diff | |
run: git diff --ignore-submodules=all --color --exit-code . |