Skip to content

feat(models): add graph to person model #12

feat(models): add graph to person model

feat(models): add graph to person model #12

Workflow file for this run

# SPDX-FileCopyrightText: 2024 Birger Schacht <[email protected]>
# SPDX-License-Identifier: MIT
name: Run ruff
on:
- push
jobs:
ruff-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python
run: uv python install
- name: Install the project
run: uv sync --only-dev
- name: Run ruff format
run: uv run ruff format
ruff-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python
run: uv python install
- name: Install the project
run: uv sync --only-dev
- name: Run ruff check
run: uv run ruff check