Skip to content

Development (v1.2.2) #1212

Development (v1.2.2)

Development (v1.2.2) #1212

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
name: pytest
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
pandas-version:
- '2.2'
steps:
- uses: actions/checkout@v2
- name: setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: install deps
run: |
pip install .[test] pandas==${{ matrix.pandas-version }}
- name: pytest
run: |
pytest