Skip to content

chore: move dev extras to dependency-groups #188

chore: move dev extras to dependency-groups

chore: move dev extras to dependency-groups #188

Workflow file for this run

name: Run linter and formatter
on:
pull_request:
push:
branches: [ main ]
tags: [ 'v*.*.*' ]
permissions:
contents: read
jobs:
test:
name: Lint and Format
strategy:
matrix:
os: [ubuntu-latest]
python: ["3.10"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
submodules: recursive
- name: Install uv with python
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python }}
- name: Run ruff linter
run: |
uvx ruff@0.11.11 check
- name: Run ruff formatter
run: |
uvx ruff@0.11.11 format