Check polars version #20
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |