Skip to content

Commit 3d9aec9

Browse files
committed
ci: fix github workflow
1 parent 5005cb2 commit 3d9aec9

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/static-analysis.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,21 @@ jobs:
1111
- "3.8"
1212
steps:
1313
- uses: actions/checkout@v4
14+
with:
15+
submodules: true
16+
17+
- name: Pull & update submodules recursively
18+
run: |
19+
git submodule update --init --recursive
1420
1521
- name: Install uv
1622
uses: astral-sh/setup-uv@v5
1723
with:
1824
python-version: ${{ matrix.python-version }}
1925

2026
- name: Install the project
21-
run: uv sync --only-group=dev
27+
run: |
28+
uv sync --only-group=dev
2229
2330
- name: Run static analysis
2431
run: make static-analysis

0 commit comments

Comments
 (0)