From 539762231bc332c73dc9aea361b9a122371d5220 Mon Sep 17 00:00:00 2001 From: Yves Date: Wed, 11 Jun 2025 09:12:31 +0200 Subject: [PATCH] Check format --- .github/workflows/MainDistributionPipeline.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/MainDistributionPipeline.yml b/.github/workflows/MainDistributionPipeline.yml index 88330dd..fe8c82c 100644 --- a/.github/workflows/MainDistributionPipeline.yml +++ b/.github/workflows/MainDistributionPipeline.yml @@ -56,4 +56,16 @@ jobs: ci_tools_version: v1.3.0 duckdb_version: v1.3.0 exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads' - deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }} \ No newline at end of file + deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }} + + format-check: + name: Check formatting + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + submodules: 'recursive' + + - name: Check formatting + run: make format-check \ No newline at end of file