From 89afb43ca6360efa63e0edc79d1fe2a6b3a5000f Mon Sep 17 00:00:00 2001 From: Peter Buchegger Date: Sun, 14 Mar 2021 00:51:32 +0100 Subject: [PATCH] more clang-format --- .github/workflows/build_check.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_check.yml b/.github/workflows/build_check.yml index b40fa40..001a24e 100644 --- a/.github/workflows/build_check.yml +++ b/.github/workflows/build_check.yml @@ -58,11 +58,24 @@ jobs: formatting-check: name: Formatting Check runs-on: ubuntu-latest + strategy: + matrix: + path: + - 'src' + - 'lib/BoardFinder' + - 'lib/ConfigurationManagement' + - 'lib/Display' + - 'lib/LoRa' + - 'lib/LoRa_APRS' + - 'lib/NTPClient' + - 'lib/PowerManagement' + - 'lib/TaskManager' + - 'lib/TimeLib' steps: - uses: actions/checkout@v2 - name: Run clang-format style check for C/C++ programs. uses: jidicula/clang-format-action@v3.2.0 with: clang-format-version: '11' - check-path: 'src' + check-path: ${{ matrix.path }}