From 80ca55fcebe9e2eac1a39cccbeaf591f22762b7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Cie=C5=9Blar?= Date: Fri, 10 Nov 2023 12:59:18 +0100 Subject: [PATCH] Update clang-format-lint.yml --- .github/workflows/clang-format-lint.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/clang-format-lint.yml b/.github/workflows/clang-format-lint.yml index 05e39599e..9ae425d1e 100644 --- a/.github/workflows/clang-format-lint.yml +++ b/.github/workflows/clang-format-lint.yml @@ -4,12 +4,19 @@ on: pull_request: jobs: + build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: DoozyX/clang-format-lint-action@v0.14 + - name: Install clang format + run: sudo apt install -y clang-format && clang-format --version + + - name: Checkout + uses: actions/checkout@v3 + + - name: Lint + uses: DoozyX/clang-format-lint-action@v0.14 with: source: '.' exclude: './externals'