Skip to content

docs: remove --pre from dbc install clickhouse (#25) #65

docs: remove --pre from dbc install clickhouse (#25)

docs: remove --pre from dbc install clickhouse (#25) #65

Workflow file for this run

# Copyright 2026 Columnar Technologies Inc.
# SPDX-License-Identifier: Apache-2.0
name: continuous-integration
on:
push:
branches: [main]
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: cache
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: install dbc
run: curl -LsSf https://dbc.columnar.tech/install.sh | sh
- name: install duckdb driver
run: dbc install duckdb
- name: build
run: cargo build
- name: lint
run: cargo clippy
- name: test
run: cargo test