File tree Expand file tree Collapse file tree 1 file changed +7
-11
lines changed Expand file tree Collapse file tree 1 file changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -10,19 +10,15 @@ jobs:
10
10
name : Check Documentation
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - name : Checkout
14
- uses : actions/checkout@v4
15
- - name : Set up Python ${{ matrix.python-version }}
16
- uses : actions/setup-python@v4
17
- with :
18
- python-version : " 3.13"
19
- - name : Install uv
13
+ - uses : actions/checkout@v4
14
+ - name : Install uv and set the python version
20
15
uses : astral-sh/setup-uv@v6
16
+ with :
17
+ python-version : ' 3.13'
18
+ enable-cache : true
21
19
- name : Install dependencies
22
- run : |
23
- UV_PROJECT_ENVIRONMENT=/usr/local uv sync --locked --group docs
20
+ run : uv sync --locked --group docs
24
21
- name : Build docs with MkDocs
25
- run : |
26
- make docs
22
+ run : make docs
27
23
- name : Check Markdown links
28
24
uses : tcort/github-action-markdown-link-check@v1
You can’t perform that action at this time.
0 commit comments