Skip to content

More github actins

More github actins #25

Workflow file for this run

name: ruff & mypy
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Install Python (3.11)
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install the project
run: uv sync --all-extras --dev --no-install-project
- name: Ruff check
run: uv run ruff check --diff
- name: Ruff format
run: uv run ruff format --diff
- name: Mypy
run: uv run mypy .