Skip to content

Feature | CLI

Feature | CLI #17

Workflow file for this run

name: Build Matrix
on:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run uv build
uses: ./.github/actions/uv-build
# TODO:
# - name: Run tests
# run: uv run pytest