Skip to content

Commit

Permalink
💚 Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
falexwolf committed Aug 5, 2024
1 parent cc9e823 commit c396f6c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.10"

- name: install Python deps
run: pip install -U laminci

- run: pip install "laminci@git+https://x-access-token:${{ secrets.LAMIN_BUILD_DOCS }}@github.com/laminlabs/laminci"
- run: nox -s "install(group='docs')"
- uses: actions/download-artifact@v2
- run: nox -s docs
Expand Down
6 changes: 4 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,14 @@ def install(session, group):
*"uv pip install --system ipywidgets".split()
) # needed to silence the jupyter warning
session.run(*"uv pip install --system .[dev]".split())
session.run(*"git clone --recursive https://github.com/laminlabs/lamindb".split())
session.run(
*"git clone --recursive --depth 1 https://github.com/laminlabs/lamindb".split()
)
# session.run(
# *"git clone -b <branch-name> --recursive https://github.com/laminlabs/lamindb".split()
# )

if IS_PR:
if True: # IS_PR: # run integration tests on main
session.run(
"uv",
"pip",
Expand Down

0 comments on commit c396f6c

Please sign in to comment.