Skip to content

Bump version to 0.0.14 (#20) #67

Bump version to 0.0.14 (#20)

Bump version to 0.0.14 (#20) #67

Workflow file for this run

name: tests
on:
push:
branches: [main]
paths-ignore:
- '**.md'
- 'LICENSE'
pull_request:
branches: [main]
paths-ignore:
- '**.md'
- 'LICENSE'
jobs:
lint-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- run: uvx ruff check --diff
- run: uvx ruff format --diff
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- run: uv run pytest
pyright:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- run: uv run pyright