Skip to content

fix: add comment before closing test issue for better readability #15

fix: add comment before closing test issue for better readability

fix: add comment before closing test issue for better readability #15

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
permissions:
contents: write # Needed to push to gh-pages branch
pages: write # Needed to deploy GitHub Pages
id-token: write # Needed for GitHub Pages authentication
jobs:
docs:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs-material mkdocstrings[python] mkdocs-autorefs
- name: Build documentation
run: mkdocs build
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'site'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4