Compare commits

...

5 Commits

Author SHA1 Message Date
ohdearaugustin
d321b63ea1 fix prettier 2024-04-21 16:34:31 +02:00
ohdearaugustin
84782883e0 docs/requirements: update mkdocs-material 2024-04-21 16:29:45 +02:00
ohdearaugustin
f6880514b3 Revert "set explicit python version"
This reverts commit 4dd7b81f26.
2024-04-21 16:29:06 +02:00
ohdearaugustin
4dd7b81f26 set explicit python version 2024-04-21 15:44:54 +02:00
Juan Font
dcd2548bf1 Add test stage to docs
Add new file with docs tets

Run only in pulls
2024-04-18 21:05:40 +00:00
2 changed files with 28 additions and 2 deletions

27
.github/workflows/docs-test.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: Test documentation build
on: [pull_request]
concurrency:
group: ${{ github.workflow }}-$${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install python
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Setup cache
uses: actions/cache@v2
with:
key: ${{ github.ref }}
path: .cache
- name: Setup dependencies
run: pip install -r docs/requirements.txt
- name: Build docs
run: mkdocs build --strict

View File

@@ -1,5 +1,4 @@
cairosvg~=2.7.1
mkdocs-material~=9.4.14
mkdocs-material~=9.5.18
mkdocs-minify-plugin~=0.7.1
pillow~=10.1.0