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:
1010 name : Check Documentation
1111 runs-on : ubuntu-latest
1212 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
2015 uses : astral-sh/setup-uv@v6
16+ with :
17+ python-version : ' 3.13'
18+ enable-cache : true
2119 - name : Install dependencies
22- run : |
23- UV_PROJECT_ENVIRONMENT=/usr/local uv sync --locked --group docs
20+ run : uv sync --locked --group docs
2421 - name : Build docs with MkDocs
25- run : |
26- make docs
22+ run : make docs
2723 - name : Check Markdown links
2824 uses : tcort/github-action-markdown-link-check@v1
You can’t perform that action at this time.
0 commit comments