Skip to content

CMake-Format

CMake-Format #2414

Workflow file for this run

name: CMake-Format
on:
push:
branches:
- master
- 'dev**'
pull_request:
paths:
- 'tesseract**'
- '.github/workflows/clang_format.yml'
- '**clang-format'
schedule:
- cron: '0 5 * * *'
jobs:
cmake_format:
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