Skip to content

Update packaging and readthedocs config. #11

Update packaging and readthedocs config.

Update packaging and readthedocs config. #11

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: [ main ]
jobs:
test:
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Conda
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
channels: defaults
- name: Install dependencies
run: |
conda install dask pyarrow s3fs pytest pytest-cov
pip install -e . --no-deps
- name: PyTest
run: |
pytest -v