Skip to content

Commit 29e4943

Browse files
Actually fixed CI
1 parent 7f854eb commit 29e4943

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ jobs:
5656
steps:
5757
- name: Checkout repository
5858
uses: actions/checkout@v6.0.2
59+
with:
60+
submodules: recursive
5961

6062
- name: Setup Python
6163
uses: actions/setup-python@v6.2.0
@@ -89,6 +91,8 @@ jobs:
8991
steps:
9092
- name: Checkout repository
9193
uses: actions/checkout@v6.0.2
94+
with:
95+
submodules: recursive
9296

9397
- name: Setup Node.js
9498
uses: actions/setup-node@v6.4.0
@@ -143,6 +147,8 @@ jobs:
143147
steps:
144148
- name: Checkout repository
145149
uses: actions/checkout@v6.0.2
150+
with:
151+
submodules: recursive
146152

147153
- name: Setup Node.js
148154
uses: actions/setup-node@v6.4.0
@@ -161,7 +167,6 @@ jobs:
161167
if: steps.cache-node.outputs.cache-hit != 'true'
162168
run: npm ci
163169

164-
# --- ADDED PYTHON SETUP HERE ---
165170
- name: Setup Python
166171
uses: actions/setup-python@v6.2.0
167172
with:
@@ -181,7 +186,6 @@ jobs:
181186
python -m venv .venv
182187
.venv/bin/python -m pip install --upgrade pip
183188
.venv/bin/pip install ".[dev]"
184-
# -------------------------------
185189
186190
- name: Inject Commit Hash into Version
187191
run: |

0 commit comments

Comments
 (0)