Skip to content

Move from string-based links and joints to id-based logic (using hashes) #3793

Move from string-based links and joints to id-based logic (using hashes)

Move from string-based links and joints to id-based logic (using hashes) #3793

Workflow file for this run

name: CMake-Format
on:
push:
branches:
- master
pull_request:
schedule:
- cron: '0 5 * * *'
jobs:
cmake_format:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v7
- name: Run CMake Lang Format Check
run: |
sudo pip3 install cmakelang
./.run-cmake-format
output=$(git diff)
echo "$output"
if [ -n "$output" ]; then exit 1; else exit 0; fi