Skip to content

Commit a83d0ee

Browse files
committed
Check format
1 parent e06cd34 commit a83d0ee

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

.github/workflows/MainDistributionPipeline.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,21 @@ jobs:
5656
ci_tools_version: v1.3.0
5757
duckdb_version: v1.3.0
5858
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads'
59-
deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
59+
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 DuckDB UI repository
66+
uses: actions/checkout@v4
67+
68+
- name: Checkout Extension CI tools
69+
uses: actions/checkout@v4
70+
with:
71+
path: 'extension-ci-tools'
72+
ref: v1.3.0
73+
repository: duckdb/extension-ci-tools
74+
75+
- name: Check formatting
76+
run: make format-check

0 commit comments

Comments
 (0)