Skip to content

Add GitHub Action workflows for version management and PyPI publishin… #14

Add GitHub Action workflows for version management and PyPI publishin…

Add GitHub Action workflows for version management and PyPI publishin… #14

Workflow file for this run

name: Lint and Type Check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python
run: uv python install 3.12
- name: Install dependencies
run: uv sync --group dev
- name: Run linter
run: uv run ruff check .