Skip to content

fix: title

fix: title #58

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
lint-and-test:
name: Lint and test
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.11"
- "3.12"
- "3.13"
env:
DUCKDB_LIB_DIR: /opt/duckdb
LD_LIBRARY_PATH: /opt/duckdb
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Lint
run: scripts/lint
- name: Test
run: scripts/test
- name: Validate
run: scripts/validate
- name: Build docs
run: uv run mkdocs build --strict
- uses: actions/upload-pages-artifact@v3
if: ${{ github.ref == 'refs/heads/main' && matrix.python-version == '3.11' }}
with:
path: site/
deploy-docs:
name: Deploy docs
needs: lint-and-test
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/deploy-pages@v4
id: deployment