Skip to content

Version bump to 0.3.0: Add RyanDataAddressError and RyanDataValidatio… #38

Version bump to 0.3.0: Add RyanDataAddressError and RyanDataValidatio…

Version bump to 0.3.0: Add RyanDataAddressError and RyanDataValidatio… #38

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
name: Pytest - Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
enable-cache: true
cache-dependency-glob: "pyproject.toml"
ignore-nothing-to-cache: true
- name: Set up Python
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --group dev --all-extras
- name: Run tests
run: uv run pytest tests/ -v --tb=short