Skip to content

ci: move analysis to GitHub settings #653

ci: move analysis to GitHub settings

ci: move analysis to GitHub settings #653

Workflow file for this run

name: Python CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python
run: uv python install
- name: Install dependencies
run: uv sync --frozen
- name: Lint
run: uv run ruff check
- name: Test
run: uv run pytest