Skip to content

Bump version to 0.3.5 #176

Bump version to 0.3.5

Bump version to 0.3.5 #176

Workflow file for this run

name: tests
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
test:
name: Test on Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v1
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --extra dev
- name: Run tests
run: uv run pytest tests/ -m "not requires_credentials"