Skip to content

CI/CD: clang-format and make draft #1

CI/CD: clang-format and make draft

CI/CD: clang-format and make draft #1

Workflow file for this run

name: clang-format
on: [push, pull_request]
jobs:
cpp-formatting-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
- uses: actions/checkout@v3
- name: Run clang-format
run: |
clang-format --dry-run -style=google $(find . -name '*.cpp' -or -name '*.h')