From adbc62b3b6d496d049dd350fe2c0aa1dc9070e94 Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Wed, 8 Jul 2020 15:23:50 -0400 Subject: [PATCH] test dump config to ensure config is read correctly --- .github/workflows/awesome_workflow.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/awesome_workflow.yml b/.github/workflows/awesome_workflow.yml index 6be0169a8..f916bf9f1 100644 --- a/.github/workflows/awesome_workflow.yml +++ b/.github/workflows/awesome_workflow.yml @@ -128,6 +128,7 @@ jobs: sys.exit(0) print("clang-tidy:") + subprocess.run(["clang-tidy", "-dump-config"], check=True, text=True) for cpp_file in cpp_files: subprocess.run(["clang-tidy", "--quiet", "--fix", cpp_file, "--"], check=True, text=True)