Skip to content

Added more testing and updated compatibility with new pandas behaviour #8

Added more testing and updated compatibility with new pandas behaviour

Added more testing and updated compatibility with new pandas behaviour #8

Workflow file for this run

name: Python Package CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[test]"
- name: Run tests
run: |
pytest
- name: Build package
run: |
python -m pip install wheel
python setup.py sdist bdist_wheel