Skip to content

feat(deps): bump ruff from 0.6.8 to 0.6.9 #9

feat(deps): bump ruff from 0.6.8 to 0.6.9

feat(deps): bump ruff from 0.6.8 to 0.6.9 #9

Workflow file for this run

name: Quality & Tests
on:
pull_request:
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python:
- "3.10"
- "3.11"
- "3.12"
- "3.13-dev"
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python }}"
cache: pip
- name: Install requirements
run: python -m pip install -e '.[dev]'
- name: Quality
run: ./checks.sh
- name: Unit tests
run: python -Wd -m pytest --doctest-modules src