[python] Fix 3D/4D cases with core 2.27 #5368
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: TileDB-SOMA Python CI (Minimal) | |
# This workflow calls ./python-ci-single.yml on a limited subset of the | |
# {os} x {python version} matrix. It runs for all branches, in contrast to | |
# ./python-ci-full.yml, which exhausts the matrix but only for main & releases, | |
# since that's CI-resource-intensive. | |
# | |
# To test the full matrix on a working branch, invoke ./python-ci-full.yml from | |
# https://github.com/single-cell-data/TileDB-SOMA/actions/workflows/python-ci-full.yml | |
on: | |
pull_request: | |
branches: | |
- main | |
- 'release-*' | |
paths: | |
- '**' | |
- '!**.md' | |
- '!apis/r/**' | |
- '!docs/**' | |
- '!.github/**' | |
- '.github/workflows/python-ci-minimal.yml' | |
- '.github/workflows/python-ci-single.yml' | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
python-version: ['3.9', '3.12'] | |
include: | |
- os: ubuntu-latest | |
cc: gcc-11 | |
cxx: g++-11 | |
- os: macos-latest | |
cc: clang | |
cxx: clang++ | |
uses: ./.github/workflows/python-ci-single.yml | |
with: | |
os: ${{ matrix.os }} | |
python_version: ${{ matrix.python-version }} | |
cc: ${{ matrix.cc }} | |
cxx: ${{ matrix.cxx }} | |
report_codecov: ${{ matrix.python-version == '3.12' }} | |
run_lint: ${{ matrix.python-version == '3.12' }} | |
secrets: inherit |