-
-
Notifications
You must be signed in to change notification settings - Fork 4
31 lines (28 loc) · 764 Bytes
/
docs.yml
File metadata and controls
31 lines (28 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Regenerate docs
on:
workflow_dispatch:
permissions:
contents: write
jobs:
docs:
strategy:
fail-fast: false
matrix:
python-version: ["3.13"]
poetry-version: ["2.3.1"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Set Up Poetry
uses: abatilo/actions-poetry@v4
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install pyflowcl
run: poetry install --all-extras
- name: Deploy Docs
run: poetry run mkdocs gh-deploy --force