Skip to content

chore: Prepare for 0.1 release (#13) #38

chore: Prepare for 0.1 release (#13)

chore: Prepare for 0.1 release (#13) #38

Workflow file for this run

name: CI
# On every pull request, but only on push to main
on:
push:
branches:
- main
tags:
- "*"
pull_request:
jobs:
lint-python:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install a specific version of uv
uses: astral-sh/setup-uv@v6
with:
version: "latest"
- name: Ensure docs build without warnings
run: uv run --group docs mkdocs build --strict
# Use ruff-action so we get annotations in the Github UI
- uses: astral-sh/ruff-action@v3
pytest:
name: Pytest
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- name: Install a specific version of uv
uses: astral-sh/setup-uv@v6
with:
version: "latest"
- name: Run pytest
run: uv run pytest