Skip to content

build(deps): bump astral-sh/setup-uv from 8.3.2 to 9.0.0 #151

build(deps): bump astral-sh/setup-uv from 8.3.2 to 9.0.0

build(deps): bump astral-sh/setup-uv from 8.3.2 to 9.0.0 #151

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"
- "3.14"
env:
DUCKDB_LIB_DIR: /opt/duckdb
LD_LIBRARY_PATH: /opt/duckdb
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2
- uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
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@fc324d3547104276b827a68afc52ff2a11cc49c9 # v5.0.0
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@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5
id: deployment