Skip to content

chore: add license headers #15

chore: add license headers

chore: add license headers #15

Workflow file for this run

# Copyright 2026 Columnar Technologies Inc.
# SPDX-License-Identifier: Apache-2.0
name: continuous-integration
on: [push]
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