Skip to content

move matrix to json file #59

move matrix to json file

move matrix to json file #59

Workflow file for this run

name: Clang Format
on:
push:
branches:
- master
- "release/v[0-9].[0-9].[0-9]"
- "feature/**"
# Manual trigger
workflow_dispatch:
jobs:
clang_format:
runs-on: ubuntu-latest
name: Clang Format
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install clang-format
run: |
sudo apt-get update
sudo apt-get install -y clang-format
- name: Check code formatting
run: |
${{ github.workspace }}/scripts/clang_format/format.sh \
--clang_format_file ${{ github.workspace }}/.clang-format \
--directories ${{ github.workspace }}/src ${{ github.workspace }}/include ${{ github.workspace }}/tests
clang_format_diff=$(git diff)
if [[ -n "$clang_format_diff" ]]; then
echo "Found formatting errors:"
echo "$clang_format_diff"
exit 1
fi