Skip to content

GitHub actions: allow docker image build to be a required check #55

GitHub actions: allow docker image build to be a required check

GitHub actions: allow docker image build to be a required check #55

Workflow file for this run

name: Lumigator SDK tests
on:
push:
branches:
- "main"
pull_request:
branches:
- "**"
workflow_dispatch:
jobs:
sdk-unit-tests:
name: SDK unit tests - Python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Install python
run: uv python install
working-directory: lumigator/python/mzai/sdk
- name: Run tests
run: uv run pytest
working-directory: lumigator/python/mzai/sdk