Skip to content

Commit e5d4754

Browse files
committed
Fix GitHub workflows
1 parent fe9d66e commit e5d4754

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

.github/workflows/document.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
steps:
1818
- name: Checkout code
1919
uses: actions/checkout@v6
20+
with:
21+
submodules: recursive
2022

2123
- name: Set up Python
2224
uses: actions/setup-python@v6

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ jobs:
2828
steps:
2929
- name: Checkout code
3030
uses: actions/checkout@v6
31+
with:
32+
submodules: recursive
3133

3234
- name: Set up Python
3335
uses: actions/setup-python@v6

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ jobs:
3333
steps:
3434
- name: Checkout code
3535
uses: actions/checkout@v6
36+
with:
37+
submodules: recursive
3638

3739
- name: Set up Python
3840
uses: actions/setup-python@v6
@@ -43,7 +45,7 @@ jobs:
4345
run: |
4446
python -m pip install --upgrade pip
4547
python -m pip install setuptools wheel build cython
46-
python -m pip install flake8, mypy, pytest
48+
python -m pip install flake8 mypy pytest
4749
4850
- name: Build wheel and source tarball
4951
run: |

.github/workflows/testpypi.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ jobs:
2828
steps:
2929
- name: Checkout code
3030
uses: actions/checkout@v6
31+
with:
32+
submodules: recursive
3133

3234
- name: Set up Python
3335
uses: actions/setup-python@v6

0 commit comments

Comments
 (0)