From 262337b1afe59ccfcc88a96db1ff1966c0e9e312 Mon Sep 17 00:00:00 2001 From: Paul Date: Sat, 27 Jul 2024 13:25:53 -0400 Subject: [PATCH] Share the codequal job with sst-githubactions (#71) --- .github/workflows/code-checks.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/code-checks.yml b/.github/workflows/code-checks.yml index 8cd830d..ced2850 100644 --- a/.github/workflows/code-checks.yml +++ b/.github/workflows/code-checks.yml @@ -6,13 +6,12 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - path: - - 'tests' - - 'include' + path: [ 'tests', 'include' ] steps: - - uses: actions/checkout@v3 + - name: Checkout code + uses: actions/checkout@v3 + - name: Run clang-format style check - uses: jidicula/clang-format-action@v4.11.0 + uses: surge-synthesizer/sst-githubactions/clang-format-check@main with: - clang-format-version: '17' - check-path: ${{ matrix.path }} + path: ${{ matrix.path }}