Skip to content

Add initial implementation #1

Add initial implementation

Add initial implementation #1

Workflow file for this run

name: Build
on: [pull_request]
jobs:
uv-example:
name: python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
# Install a specific version of uv.
version: "0.5.12"
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Set up Python
run: uv python install
- name: Install the project
run: uv sync --all-extras --dev
- name: Run linters
run: uvx ruff check
- name: Build package
run: uv build