-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (35 loc) · 1.01 KB
/
build_doc.yaml
File metadata and controls
36 lines (35 loc) · 1.01 KB
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
32
33
34
35
36
name: Build doc
on:
workflow_dispatch:
release:
types: [created]
jobs:
build_doc:
strategy:
fail-fast: false
matrix:
# python-version: ["3.9", "3.13"]
python-version: ["3.13"]
poetry-version: ["2.1.1"]
# os: [ubuntu-22.04, macos-latest, windows-latest]
os: [macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v3
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install packages
run: poetry install
- name: Generate documentation
run: poetry run python ontodoc -i example/foaf.ttl -o example/build/ -m markdown
- name: Push to current branch
run: |
git config user.name ontodoc_bot
git add -A
git commit -am "[BOT] Update documentation example"
git push