Skip to content

Release flo-ai 1.1.1 #476

Release flo-ai 1.1.1

Release flo-ai 1.1.1 #476

Workflow file for this run

name: CI Build Flo-AI
on:
pull_request:
branches:
- develop
workflow_dispatch: # Allows manual triggering from the GitHub Actions UI
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: "0.8.6"
- name: Install dependencies
run: cd flo_ai && uv sync
- name: Run build
run: cd flo_ai && uv build
- name: Run tests
run: cd flo_ai && uv run pytest -m "not (integration)"