Skip to content

Update doc builds for uv #485

Update doc builds for uv

Update doc builds for uv #485

Workflow file for this run

name: build
on:
push:
branches:
- main
tags:
- "*-[0-9]+.*"
pull_request:
branches:
- main
jobs:
build:
name: ${{matrix.os}} py${{matrix.python-version}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.9", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{matrix.python-version}}
- name: Install uv
run: |
python -m pip install --upgrade pip
python -m pip install uv
- name: Run tests
shell: bash
run: |
bin/test.sh
- name: Lint code
shell: bash
run: |
bin/lint.sh