Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
120 changes: 60 additions & 60 deletions .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
@@ -1,79 +1,79 @@
name: Python

on:
push:
branches:
- main
pull_request:
push:
branches:
- main
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
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
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"
- uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Cache pre-commit virtualenvs
uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: pre-commit-3|${{ hashFiles('.pre-commit-config.yaml') }}
- 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
- 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.9", "3.12", "3.13", "3.13t"]
steps:
- uses: actions/checkout@v4
test-python:
name: Build and test Python
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.9", "3.12", "3.13", "3.14", "3.14t"]
steps:
- uses: actions/checkout@v4

- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Install Rust
uses: dtolnay/rust-toolchain@stable

- uses: Swatinem/rust-cache@v2
- uses: Swatinem/rust-cache@v2

- name: Install a specific version of uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
version: "0.8.x"
- name: Install a specific version of uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
version: "0.8.x"

- name: Set up Python with uv
run: |
uv python install ${{ matrix.python-version }}
- name: Set up Python with uv
run: |
uv python install ${{ matrix.python-version }}

- name: Build rust submodules
run: |
# Note: core module must be first, because it's depended on by others
uv run --python ${{ matrix.python-version }} maturin dev -m arro3-core/Cargo.toml
uv run --python ${{ matrix.python-version }} maturin dev -m arro3-compute/Cargo.toml
uv run --python ${{ matrix.python-version }} maturin dev -m arro3-io/Cargo.toml
- name: Build rust submodules
run: |
# Note: core module must be first, because it's depended on by others
uv run --python ${{ matrix.python-version }} maturin dev -m arro3-core/Cargo.toml
uv run --python ${{ matrix.python-version }} maturin dev -m arro3-compute/Cargo.toml
uv run --python ${{ matrix.python-version }} maturin dev -m arro3-io/Cargo.toml

- name: Run python tests
if: matrix.python-version != '3.13t'
run: |
uv run --python ${{ matrix.python-version }} pytest tests
- name: Run python tests
if: matrix.python-version != '3.14t'
run: |
uv run --python ${{ matrix.python-version }} pytest tests

- name: Run python tests with --require-gil-disabled
if: matrix.python-version == '3.13t'
run: |
uv run --python ${{ matrix.python-version }} pytest tests --require-gil-disabled
- name: Run python tests with --require-gil-disabled
if: matrix.python-version == '3.14t'
run: |
uv run --python ${{ matrix.python-version }} pytest tests --require-gil-disabled

# Ensure docs build without warnings
- name: Check docs
run: uv run --group docs mkdocs build --strict
# Ensure docs build without warnings
- name: Check docs
run: uv run --group docs mkdocs build --strict
Loading
Loading