Skip to content

fix code

fix code #31

Workflow file for this run

name: CI Pipeline
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v5
with:
version: "latest"
- name: Run Tests
run: uv run pytest
- name: Run Ruff
run: uv run ruff check
- name: Run MyPy
run: uv run mypy .