-
Notifications
You must be signed in to change notification settings - Fork 32
47 lines (39 loc) · 861 Bytes
/
docs.yml
File metadata and controls
47 lines (39 loc) · 861 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
name: docs
on:
workflow_dispatch:
pull_request: ~
push:
branches:
- main
schedule:
- cron: '0 7 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
checks: write
statuses: write
jobs:
documentation:
name: Run link checker
runs-on: ubuntu-latest
steps:
- name: Acquire sources
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up uv
uses: astral-sh/setup-uv@v7
with:
cache-dependency-glob: |
pyproject.toml
enable-cache: true
activate-environment: true
version: "latest"
- name: Setup env
run: uv pip install --group docs
- name: Build docs
run: |
cd docs && make check