We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32fcf7e commit 5397622Copy full SHA for 5397622
.github/workflows/MainDistributionPipeline.yml
@@ -56,4 +56,16 @@ jobs:
56
ci_tools_version: v1.3.0
57
duckdb_version: v1.3.0
58
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads'
59
- deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
+ deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
60
+
61
+ format-check:
62
+ name: Check formatting
63
+ runs-on: ubuntu-latest
64
+ steps:
65
+ - name: Checkout repository
66
+ uses: actions/checkout@v4
67
+ with:
68
+ submodules: 'recursive'
69
70
+ - name: Check formatting
71
+ run: make format-check
0 commit comments