Skip to content

Check polars version #20

Check polars version

Check polars version #20

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version:
- '3.10'
- '3.13'
polars-version:
- '1.25.2'
- '1.34.0'
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install flit
run: pip install flit
- name: Install package
run: flit install
- name: Install dev dependencies
run: pip install -r requirements-dev.txt
- name: Install polars ${{ matrix.polars-version }}
run: pip install polars==${{ matrix.polars-version }}
- name: Test
run: scripts/ci.sh