Skip to content

Docs updates

Docs updates #60

Workflow file for this run

name: CI on push
on: pull_request
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
# This is the version of the action for setting up Python, not the Python version.
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install dependencies
run: pip install pre-commit
- name: Install pre-commit hooks
run: pre-commit install
- name: Run pre-commit hooks for linting and other checks
run: pre-commit run --all-files