Skip to content

0.5.3

0.5.3 #140

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: 'uv.lock'
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: uv sync --dev
- run: uv run pytest -vv
- run: uv sync --all-extras
- run: uv run pytest -vv
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: 'uv.lock'
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: uv sync --dev --all-extras
- run: uv run mypy .
- run: uv run ruff check
- run: uv run ruff format --check