Skip to content

Bump pandas from 2.2.2 to 2.2.3 #173

Bump pandas from 2.2.2 to 2.2.3

Bump pandas from 2.2.2 to 2.2.3 #173

Workflow file for this run

name: CI
on:
pull_request:
paths:
- 'pandas_pyarrow/**'
- 'tests/**'
- '.github/workflows/ci.yml'
- 'pyproject.toml'
- 'poetry.lock'
workflow_dispatch:
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
steps:
- uses: actions/checkout@v4
- run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- run: poetry install
- run: poetry run pytest
continue-on-error: true