Skip to content

Release v0.5.0

Release v0.5.0 #458

Workflow file for this run

name: Lint
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Install uv with Python
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
python-version: 3.13
- name: Install the project
run: uv sync --extra lint
- name: ruff-lint
run: uv run ruff check
- name: ruff-format
run: uv run ruff format --check