Skip to content

feat(pyproject.toml): bump release version to 0.1.0 #1

feat(pyproject.toml): bump release version to 0.1.0

feat(pyproject.toml): bump release version to 0.1.0 #1

Workflow file for this run

---
name: Run linter and tests
on:
push:
branches: ["main"]
jobs:
uv-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install the project
run: uv sync --dev
- name: Run tests
run: uv run pytest --verbose tests
- name: Run ruff format check
run: uv run ruff format --diff --check .
- name: Run ruff check
run: uv run ruff check .