Skip to content

Change duckdb import from .parquet to .duckdb (#46) #62

Change duckdb import from .parquet to .duckdb (#46)

Change duckdb import from .parquet to .duckdb (#46) #62

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install dependencies
run: uv sync
code-quality-assurance:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install dependencies
run: uv sync --group code-quality
- name: Run linter
run: uv run ruff check
- name: Run formatter
run: uv run ruff format --check
- name: Run type checker
run: uv run ty check