Skip to content
This repository has been archived by the owner on Jun 1, 2024. It is now read-only.

Bump idna from 3.6 to 3.7 #100

Bump idna from 3.6 to 3.7

Bump idna from 3.6 to 3.7 #100

Workflow file for this run

name: Generate documentation dryrun
on:
# Documentation can be either manually updated or is automatically updated when pushed to main branch
workflow_dispatch:
push:
jobs:
deploy:
name: Build documentation site
runs-on: ubuntu-latest
steps:
# Checkout repository including submodules
- name: Checkout
id: checkout
uses: actions/checkout@v4
with:
submodules: true
# Setup Python 3.9
- name: Setup Python
id: python
uses: actions/setup-python@v5
with:
python-version: '3.9'
# Install dependencies using Poetry
- uses: Gr1N/setup-poetry@v8
- uses: actions/cache@v4
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
- run: poetry --version
- run: poetry install --no-root
# Build documentation to ./site/ directory
- name: Build Documentation
id: build
run: poetry run docs
# Upload build outputs
- name: Upload build artifacts markdown
uses: actions/upload-artifact@v4
if: always()
with:
name: markdown output
path: docs_build/*
- name: Upload build artifacts HTML
uses: actions/upload-artifact@v4
if: always()
with:
name: HTML output
path: site/*