[FEAT] Create obstore store in fsspec on demand #584
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
pre-commit: | |
name: Run pre-commit on Python code | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
# Use ruff-action so we get annotations in the Github UI | |
- uses: astral-sh/ruff-action@v3 | |
- name: Cache pre-commit virtualenvs | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pre-commit | |
key: pre-commit-3|${{ hashFiles('.pre-commit-config.yaml') }} | |
- name: run pre-commit | |
run: | | |
python -m pip install pre-commit | |
pre-commit run --all-files | |
test-python: | |
name: Build and test Python | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
python-version: ["3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v5 | |
with: | |
enable-cache: true | |
version: "0.5.x" | |
- name: Set up Python | |
run: uv python install ${{ matrix.python-version }} | |
- name: Build rust submodules | |
run: | | |
uv run maturin develop -m obstore/Cargo.toml | |
- name: Run python tests | |
run: | | |
uv run pytest tests | |
# Ensure docs build without warnings | |
- name: Check docs | |
if: "${{ matrix.python-version == 3.11 }}" | |
run: uv run mkdocs build --strict |