Skip to content

Commit dbe427d

Browse files
committed
ci: Debug issue with artifact upload
1 parent 7d0e201 commit dbe427d

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,10 @@ jobs:
4747
run: make setup
4848

4949
- name: Check if the documentation builds correctly
50-
run: make check-docs
50+
run: |
51+
pwd
52+
uv run mkdocs build -s
53+
ls -al .
5154
5255
- name: Check the code quality
5356
run: make check-quality
@@ -56,7 +59,9 @@ jobs:
5659
run: make check-types
5760

5861
- name: Check for breaking changes in the API
59-
run: make check-api
62+
run: |
63+
make check-api
64+
ls site
6065
6166
- name: Store objects inventory for tests
6267
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)