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 e06cd34 commit a83d0eeCopy full SHA for a83d0ee
.github/workflows/MainDistributionPipeline.yml
@@ -56,4 +56,21 @@ 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 DuckDB UI repository
66
+ uses: actions/checkout@v4
67
68
+ - name: Checkout Extension CI tools
69
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