Skip to content

Update to polars==1.0.0. #44

Update to polars==1.0.0.

Update to polars==1.0.0. #44

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout directory.
uses: actions/checkout@v3
with:
lfs: 'true'
- name: Set up Python.
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies.
run: |
make venv
venv/bin/python -m pip install -r requirements.txt
venv/bin/python -m pip install pytest
- name: Run tests.
run: |
source venv/bin/activate
pytest -s