Skip to content

Commit 8afc2ad

Browse files
committed
try to fix submodules
1 parent 62cb4fd commit 8afc2ad

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@v4
16+
with:
17+
submodules: recursive
1618

1719
- name: build venv
1820
run: |

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ RUN ln -s $HOME/.cargo/bin/uv /usr/bin/uv
2828

2929
RUN git config --global user.email "[email protected]" && \
3030
git config --global user.name "Elspeth See-Eye" && \
31-
git config --global init.defaultBranch main
31+
git config --global init.defaultBranch main && \
32+
git config --global --add safe.directory /app
3233

3334
WORKDIR /app
3435
RUN uv venv .venv

0 commit comments

Comments
 (0)