From 168cc40d59acf2cc8d50b6935f8101bc69e92485 Mon Sep 17 00:00:00 2001 From: Michael Richters Date: Wed, 6 Apr 2022 00:02:06 -0500 Subject: [PATCH] Rename `check-formatting` to `check-code-style` Signed-off-by: Michael Richters --- .github/workflows/build.yml | 4 ++-- Makefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 86483dfb..2a2d0f93 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,11 +32,11 @@ jobs: uses: hendrikmuhs/ccache-action@v1.2 - run: make setup - run: KALEIDOSCOPE_CCACHE=1 make -j $(nproc) --output-sync=recurse simulator-tests - check-formatting: + check-code-style: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - run: make check-formatting + - run: make check-code-style check-shellcheck: runs-on: ubuntu-latest steps: diff --git a/Makefile b/Makefile index 71e56ff6..02062372 100644 --- a/Makefile +++ b/Makefile @@ -108,8 +108,8 @@ format: --exclude-file 'generated-testcase.cpp' \ src plugins examples testing -.PHONY: check-formatting -check-formatting: +.PHONY: check-code-style +check-code-style: bin/format-code.py \ --exclude-dir 'testing/googletest' \ --exclude-file 'generated-testcase.cpp' \