Rename `check-formatting` to `check-code-style`

Signed-off-by: Michael Richters <gedankenexperimenter@gmail.com>
pull/1155/head
Michael Richters 2 years ago
parent f6cb00efad
commit 168cc40d59
No known key found for this signature in database
GPG Key ID: 1288FD13E4EEF0C0

@ -32,11 +32,11 @@ jobs:
uses: hendrikmuhs/ccache-action@v1.2 uses: hendrikmuhs/ccache-action@v1.2
- run: make setup - run: make setup
- run: KALEIDOSCOPE_CCACHE=1 make -j $(nproc) --output-sync=recurse simulator-tests - run: KALEIDOSCOPE_CCACHE=1 make -j $(nproc) --output-sync=recurse simulator-tests
check-formatting: check-code-style:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- run: make check-formatting - run: make check-code-style
check-shellcheck: check-shellcheck:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:

@ -108,8 +108,8 @@ format:
--exclude-file 'generated-testcase.cpp' \ --exclude-file 'generated-testcase.cpp' \
src plugins examples testing src plugins examples testing
.PHONY: check-formatting .PHONY: check-code-style
check-formatting: check-code-style:
bin/format-code.py \ bin/format-code.py \
--exclude-dir 'testing/googletest' \ --exclude-dir 'testing/googletest' \
--exclude-file 'generated-testcase.cpp' \ --exclude-file 'generated-testcase.cpp' \

Loading…
Cancel
Save