Skip to content

Automated release versioning and structured PyPI/TestPyPI workflow #912

Automated release versioning and structured PyPI/TestPyPI workflow

Automated release versioning and structured PyPI/TestPyPI workflow #912

Workflow file for this run

name: Code Format
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
- name: Set up Python
run: uv python install 3.11
- name: Install dependencies
run: uv sync --frozen --extra dev
- name: List packages
run: uv pip list
- name: Code Formatting
run: uv run black src/ --check --diff