Files
yoga/.github/actions/clang-format/action.yml
Nick Gerleman 7fc3a341fb wd
2022-10-14 07:43:30 -07:00

17 lines
355 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
shell: bash
run: clang-format-12 ${{ inputs.directory }}