Skip to content

ci: add CI and PyPI trusted-publishing workflows #1

ci: add CI and PyPI trusted-publishing workflows

ci: add CI and PyPI trusted-publishing workflows #1

Workflow file for this run

name: ci
on:
push:
branches: [master]
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
- run: uv sync
- run: uv run ruff check
- run: uv run ruff format --check
- run: uv run pyright
- run: uv run pytest