From b288c1491454b0ffecee2a3957e8e79c53e8acae Mon Sep 17 00:00:00 2001 From: Nick Gerleman Date: Fri, 14 Oct 2022 08:27:31 -0700 Subject: [PATCH] globstar --- .github/actions/clang-format/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/clang-format/action.yml b/.github/actions/clang-format/action.yml index c641ad33..bc6c7019 100644 --- a/.github/actions/clang-format/action.yml +++ b/.github/actions/clang-format/action.yml @@ -18,4 +18,6 @@ runs: - name: clang-format working-directory: ${{ inputs.directory }} shell: bash - run: clang-format-${{ inputs.version }} --dry-run --Werror **/*.cpp # Yoga's config doesn't support ObjC + run: | + shopt -s globstar + clang-format-${{ inputs.version }} --dry-run --Werror **/*.cpp