From 154e1084ba04da601fa185710a2d48b252a8454d Mon Sep 17 00:00:00 2001 From: tooomm Date: Tue, 14 Sep 2021 22:11:56 +0200 Subject: [PATCH] CI: Separate C++ linting (#4400) * separate cpp lint * made executable --- .ci/{lint.sh => lint_cpp.sh} | 0 .github/workflows/clangify.yml | 7 ++++--- 2 files changed, 4 insertions(+), 3 deletions(-) rename .ci/{lint.sh => lint_cpp.sh} (100%) diff --git a/.ci/lint.sh b/.ci/lint_cpp.sh similarity index 100% rename from .ci/lint.sh rename to .ci/lint_cpp.sh diff --git a/.github/workflows/clangify.yml b/.github/workflows/clangify.yml index 314534e7..668a1f44 100644 --- a/.github/workflows/clangify.yml +++ b/.github/workflows/clangify.yml @@ -1,4 +1,4 @@ -name: Clangify +name: Code Style (C++) on: pull_request: @@ -6,9 +6,10 @@ on: - master paths-ignore: - '**.md' + - 'webclient/**' jobs: - linter: + clang-format: runs-on: ubuntu-latest steps: @@ -25,4 +26,4 @@ jobs: - name: Run clangify shell: bash - run: ./.ci/lint.sh + run: ./.ci/lint_cpp.sh