Skip to content

Fixs

Fixs #175

Workflow file for this run

name: CI
on:
push:
branches: ["main", "develop"]
pull_request:
branches: ["main", "develop"]
jobs:
lint-and-typecheck:
name: Lint & Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: "pyproject.toml"
- name: Install dependencies
run: uv sync --locked --all-extras --dev
- name: Lint
run: uv run ruff check .
- name: Type Check
run: uv run mypy .
- name: Test Docker Build
run: docker build -t multai-back-test .
# - name: Run tests
# run: uv run pytest --maxfail=1 --disable-warnings