Skip to content

feat: use pyproject.toml and uv publish pkg #9

feat: use pyproject.toml and uv publish pkg

feat: use pyproject.toml and uv publish pkg #9

Workflow file for this run

name: lint
on: [push, pull_request]
jobs:
lint:
name: lint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Lint
run: |
uv sync --frozen
uv run ruff check
- name: Test
run: |
uv run pytest -s tests/
uv build
- name: Build
run: |
uv build