We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f827cbc commit 5e4c913Copy full SHA for 5e4c913
.github/workflows/pages.yml
@@ -28,11 +28,13 @@ jobs:
28
fail-fast: false
29
steps:
30
- uses: actions/checkout@v5
31
- - uses: snok/install-poetry@v1.4.1
32
- - name: Install Dependencies
33
- run: poetry install
34
- shell: bash
35
- - run: poetry run pdoc ./roborock -o docs/pdoc
+ - name: Set up uv
+ uses: astral-sh/setup-uv@v7
+ with:
+ python-version: ${{ matrix.python-version }}
+ activate-environment: true
36
+ - run: uv pip install .
37
+ - run: pdoc ./roborock -o docs/pdoc
38
- name: Setup Pages
39
uses: actions/configure-pages@v5
40
- name: Upload artifact
0 commit comments