Skip to content

Removing branch name, as workflows are now successful #112

Removing branch name, as workflows are now successful

Removing branch name, as workflows are now successful #112

name: clang-format Check
on:
push:
paths:
- ".github/workflows/linux_build.yml"
- "include/**"
- "src/**"
- "tests/**"
pull_request:
paths:
- ".github/workflows/linux_build.yml"
- "include/**"
- "src/**"
- "tests/**"
jobs:
formatting-check:
name: Formatting Check
runs-on: ubuntu-latest
strategy:
matrix:
path:
- 'src'
- 'include'
steps:
- uses: actions/checkout@v3
- name: Run clang-format style check.
uses: jidicula/[email protected]
with:
clang-format-version: '14'
check-path: ${{ matrix.path }}