Skip to content

ci: allow docs build to be manually triggered #35

ci: allow docs build to be manually triggered

ci: allow docs build to be manually triggered #35

name: Lint & Unit Test
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v8.1.0
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install
run: make install
- name: CI
run: make ci