Skip to content

Added README.md and CONTRIBUTING.md files #11

Added README.md and CONTRIBUTING.md files

Added README.md and CONTRIBUTING.md files #11

Workflow file for this run

name: Build Docs
on:
pull_request:
push:
branches:
- main
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4.5.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v5.1.0
with:
python-version: ${{ matrix.python-version }}
- name: Install hatch
run: |
python -m pip install --upgrade pip
python -m pip install hatch
- name: Build documentation using Hatch
run: |
hatch run docs:build