Skip to content

Commit b165423

Browse files
fix
1 parent 093e22d commit b165423

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

.github/workflows/lint-docs.yml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)