Skip to content

feat: added automatic release for pypi #5

feat: added automatic release for pypi

feat: added automatic release for pypi #5

Workflow file for this run

name: build
on:
push:
branches: [master, dev]
jobs:
package:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@main
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v2
with:
version: "latest"
enable-cache: true
- name: Install Python
run: uv python install
- name: Install the project
run: uv sync --extra dev
- name: Run ruff
run: uv run ruff check src/