From 5e4c9444f0759fa4df2bfb796aa9c89fd4c734a9 Mon Sep 17 00:00:00 2001 From: erlingrj Date: Fri, 24 Jan 2025 08:21:22 +0100 Subject: [PATCH] Check formatting of compiler in CI --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 298a3ec7..af954327 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,10 +28,13 @@ jobs: # Uncomment to SSH into the runner. # - name: Setup upterm session # uses: lhotari/action-upterm@v1 - - name: Format check + - name: Runtime format check run: | clang-format --version make format-check + + - name: LFC format check + run: cd lfc && ./gradlew spotlessCheck - name: Run unit tests run: make unit-test