Files
yoga/.github/actions/clang-format/action.yml
Nick Gerleman 8c8ea5e6f0 .
2022-10-14 07:55:13 -07:00

18 lines
401 B
YAML

name: Clang Format
inputs:
directory:
description: Directory to Lint
required: true
runs:
using: "composite"
steps:
- name: Install
shell: bash
run: sudo apt install clang-format-12 # This should be roughly in sync with Arcanist
- name: clang-format
working-directory: ${{ inputs.directory }}
shell: bash
run: clang-format-12 **/*(.h|.cpp|.m|.mm)