Set clang tidy version to 10 for CI build #1079
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: CMake-Format | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
# allow manually starting this workflow | |
workflow_dispatch: | |
jobs: | |
cmake_lang: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run CMake Lang Format Check | |
run: | | |
sudo pip3 install cmakelang | |
RED='\033[0;31m' | |
NC='\033[0m' # No Color | |
./.run-cmake-format | |
output=$(git diff) | |
if [ -n "$output" ]; then printf "${RED}CMake format error: run script './.run-cmake-formate'${NC}\n"; fi | |
if [ -n "$output" ]; then printf "${RED}${output}${NC}\n"; fi | |
if [ -n "$output" ]; then exit 1; else exit 0; fi |