2023-08-10 19:05:20 +00:00
|
|
|
name: Check Code Formatting 🛠️
|
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
jobs:
|
|
|
|
clang-format:
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
2024-04-15 12:19:40 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-08-10 19:05:20 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: clang-format check 🐉
|
|
|
|
id: clang-format
|
|
|
|
uses: ./.github/actions/run-clang-format
|
|
|
|
with:
|
|
|
|
failCondition: error
|
|
|
|
|
|
|
|
cmake-format:
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
2024-04-15 12:19:40 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-08-10 19:05:20 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: cmake-format check 🎛️
|
|
|
|
id: cmake-format
|
|
|
|
uses: ./.github/actions/run-cmake-format
|
|
|
|
with:
|
|
|
|
failCondition: error
|