Skip to content

Merge pull request #52 from Duzzuti/33-add-all-in2 #190

Merge pull request #52 from Duzzuti/33-add-all-in2

Merge pull request #52 from Duzzuti/33-add-all-in2 #190

Workflow file for this run

name: Clang_Format
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
formatting-check:
name: Formatting Check
runs-on: ubuntu-latest
strategy:
matrix:
path:
- 'src'
- 'src/players/*/'
- 'include'
- 'tests'
steps:
- uses: actions/checkout@v3
- name: Run clang-format style check for C/C++/Protobuf programs.
uses: jidicula/clang-format-action@v4.11.0
with:
clang-format-version: '13'
check-path: ${{ matrix.path }}
fallback-style: 'Google'