Skip to content

add mlipx serve

add mlipx serve #60

Workflow file for this run

name: pytest
on:
push:
branches: [ main ]
pull_request:
schedule:
- cron: '14 3 * * 1' # at 03:14 on Monday.
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version:
- "3.12"
- "3.11"
- "3.10"
os:
- ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --group dev --extra mace
- name: Pytest
run: |
uv run python --version
uv run pytest --cov --junitxml=junit.xml -o junit_family=legacy