We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 093e22d commit 1cea769Copy full SHA for 1cea769
1 file changed
.github/workflows/lint-docs.yml
@@ -10,19 +10,15 @@ jobs:
10
name: Check Documentation
11
runs-on: ubuntu-latest
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
+ - uses: actions/checkout@v4
+ - name: Install uv and set the python version
20
uses: astral-sh/setup-uv@v6
+ with:
+ python-version: '3.13'
+ enable-cache: true
21
- name: Install dependencies
22
- run: |
23
- UV_PROJECT_ENVIRONMENT=/usr/local uv sync --locked --group docs
+ run: uv sync --locked --group docs
24
- name: Build docs with MkDocs
25
26
- make docs
+ run: make docs
27
- name: Check Markdown links
28
uses: tcort/github-action-markdown-link-check@v1
0 commit comments