Skip to content

Bump the ci-dependencies group across 1 directory with 2 updates #102

Bump the ci-dependencies group across 1 directory with 2 updates

Bump the ci-dependencies group across 1 directory with 2 updates #102

Workflow file for this run

name: pytest
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
all-tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- name: Clone repo
uses: actions/checkout@v6.0.1
- uses: actions/setup-python@v6.1.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install uv && uv pip install --system ".[dev,polars]"
- name: Run pytest
run: uv run pytest